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. |
-} |