Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
remove ClientHandler::DoClose() override
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffryBooher committed Dec 11, 2014
1 parent b8de583 commit 5ba2172
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions appshell/client_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,6 @@ void ClientHandler::OnAfterCreated(CefRefPtr<CefBrowser> browser) {
browser_window_map_[browser->GetHost()->GetWindowHandle()] = browser;
}

bool ClientHandler::DoClose(CefRefPtr<CefBrowser> browser) {
REQUIRE_UI_THREAD();
return false;
}

void ClientHandler::OnBeforeClose(CefRefPtr<CefBrowser> browser) {
REQUIRE_UI_THREAD();

Expand Down
1 change: 0 additions & 1 deletion appshell/client_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ class ClientHandler : public CefClient,
CefBrowserSettings& settings,
bool* no_javascript_access) OVERRIDE;
virtual void OnAfterCreated(CefRefPtr<CefBrowser> browser) OVERRIDE;
virtual bool DoClose(CefRefPtr<CefBrowser> browser) OVERRIDE;
virtual void OnBeforeClose(CefRefPtr<CefBrowser> browser) OVERRIDE;

// CefDragHandler methods
Expand Down

0 comments on commit 5ba2172

Please sign in to comment.