@@ -35,13 +35,13 @@ void OpenInExternalBrowser(const std::string& url)
3535
3636 // xdg-open is a desktop-independent tool for running
3737 // default applications. Installed by default on Ubuntu.
38- // xdg-open process is running in the backround until
38+ // xdg-open process is running in the backround until
3939 // cefpython app closes.
4040 std::string prog = " xdg-open" ;
4141
4242 // Using system() opens up for bugs and exploits, not
4343 // recommended.
44-
44+
4545 // Fork yourself and run in parallel, do not block the
4646 // current proces.
4747 char *args[3 ];
@@ -198,7 +198,7 @@ void ClientHandler::OnAfterCreated(CefRefPtr<CefBrowser> browser) {
198198// true to use a custom implementation.
199199// /
200200/* --cef()--*/
201- bool ClientHandler::RunModal (CefRefPtr<CefBrowser> browser) {
201+ bool ClientHandler::RunModal (CefRefPtr<CefBrowser> browser) {
202202 REQUIRE_UI_THREAD ();
203203 return LifespanHandler_RunModal (browser);
204204}
@@ -262,7 +262,7 @@ bool ClientHandler::RunModal(CefRefPtr<CefBrowser> browser) {
262262// exist.
263263// /
264264/* --cef()--*/
265- bool ClientHandler::DoClose (CefRefPtr<CefBrowser> browser) {
265+ bool ClientHandler::DoClose (CefRefPtr<CefBrowser> browser) {
266266 REQUIRE_UI_THREAD ();
267267 return LifespanHandler_DoClose (browser);
268268}
@@ -481,7 +481,7 @@ bool ClientHandler::GetAuthCredentials(CefRefPtr<CefBrowser> browser,
481481 const CefString& scheme,
482482 CefRefPtr<CefAuthCallback> callback) {
483483 REQUIRE_IO_THREAD ();
484- return RequestHandler_GetAuthCredentials (browser, frame, isProxy, host,
484+ return RequestHandler_GetAuthCredentials (browser, frame, isProxy, host,
485485 port, realm, scheme, callback);
486486 // Default: return false;
487487}
@@ -582,7 +582,7 @@ void ClientHandler::OnPluginCrashed(CefRefPtr<CefBrowser> browser,
582582// --------------------------------------------------------------------------
583583
584584// /
585- // Implement this interface to handle events related to browser load status.
585+ // Implement this interface to handle events related to browser load status.
586586// The methods of this class will be called on the UI thread.
587587// /
588588
@@ -663,7 +663,7 @@ void ClientHandler::OnLoadError(CefRefPtr<CefBrowser> browser,
663663bool ClientHandler::GetRootScreenRect (CefRefPtr<CefBrowser> browser,
664664 CefRect& rect) {
665665 REQUIRE_UI_THREAD ();
666- return RenderHandler_GetRootScreenRect (browser, rect);
666+ return RenderHandler_GetRootScreenRect (browser, rect);
667667}
668668
669669// /
@@ -685,7 +685,7 @@ bool ClientHandler::GetScreenPoint(CefRefPtr<CefBrowser> browser,
685685 int viewX,
686686 int viewY,
687687 int & screenX,
688- int & screenY) {
688+ int & screenY) {
689689 REQUIRE_UI_THREAD ();
690690 return RenderHandler_GetScreenPoint (browser, viewX, viewY, screenX,
691691 screenY);
@@ -702,7 +702,7 @@ bool ClientHandler::GetScreenPoint(CefRefPtr<CefBrowser> browser,
702702// /
703703/* --cef()--*/
704704bool ClientHandler::GetScreenInfo (CefRefPtr<CefBrowser> browser,
705- CefScreenInfo& screen_info) {
705+ CefScreenInfo& screen_info) {
706706 REQUIRE_UI_THREAD ();
707707 return RenderHandler_GetScreenInfo (browser, screen_info);
708708}
0 commit comments