Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5998)

Unified Diff: chrome_frame/custom_sync_call_context.cc

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/custom_sync_call_context.h ('k') | chrome_frame/delete_chrome_history.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/custom_sync_call_context.cc
diff --git a/chrome_frame/custom_sync_call_context.cc b/chrome_frame/custom_sync_call_context.cc
deleted file mode 100644
index 71ca0a241ba8badb46285b6f0137f761d690f18b..0000000000000000000000000000000000000000
--- a/chrome_frame/custom_sync_call_context.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome_frame/custom_sync_call_context.h"
-
-#include "base/bind.h"
-
-BeginNavigateContext::BeginNavigateContext(ChromeFrameAutomationClient* client)
- : client_(client) {
-}
-
-void BeginNavigateContext::Completed(
- AutomationMsg_NavigationResponseValues response) {
- client_->BeginNavigateCompleted(response);
-}
-
-UnloadContext::UnloadContext(
- base::WaitableEvent* unload_done, bool* should_unload)
- : should_unload_(should_unload),
- unload_done_(unload_done) {
-}
-
-void UnloadContext::Completed(bool should_unload) {
- *should_unload_ = should_unload;
- unload_done_->Signal();
- should_unload_ = NULL;
- unload_done_ = NULL;
- // This object will be destroyed after this. Cannot access any members
- // on returning from this function.
-}
« no previous file with comments | « chrome_frame/custom_sync_call_context.h ('k') | chrome_frame/delete_chrome_history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698