WebAppBrowser.cpp 426 B

12345678910111213141516171819202122232425
  1. #include "WebAppBrowser.h"
  2. namespace Atomic
  3. {
  4. WebAppBrowser::WebAppBrowser()
  5. {
  6. }
  7. void WebAppBrowser::OnBeforeCommandLineProcessing(const CefString& process_type, CefRefPtr<CefCommandLine> command_line)
  8. {
  9. CefApp::OnBeforeCommandLineProcessing(process_type, command_line);
  10. }
  11. // CefBrowserProcessHandler methods.
  12. void WebAppBrowser::OnContextInitialized()
  13. {
  14. CefBrowserProcessHandler::OnContextInitialized();
  15. }
  16. }