I'm trying to embed a chromium browser into my C++ plugin, which will be run inside of a host application. This is my first time working with chromium, so please forgive my ignorance.
I've got the program running to the point where cef is initialized and the browser is instantiated with no asserts or issues. However, the browser gets stuck loading things. I've noticed that during the instantiation of the browser, the host application raises an error about misused command line arguments. Is chromium trying to receive messages from the command line? If so, how can I receive those messages when my application is a plugin?
I can reproduce the host application's error by calling it from the command line with unknown arguments (Ex. "C:/HostApplication.exe -someRandomString").