| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/bind_helpers.h" | 6 #include "base/bind_helpers.h" |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "chrome_frame/external_tab.h" | 9 #include "chrome_frame/external_tab.h" |
| 10 #include "base/task.h" | |
| 11 #include "base/synchronization/waitable_event.h" | 10 #include "base/synchronization/waitable_event.h" |
| 12 #include "chrome/common/automation_messages.h" | 11 #include "chrome/common/automation_messages.h" |
| 13 #include "chrome_frame/chrome_frame_delegate.h" | 12 #include "chrome_frame/chrome_frame_delegate.h" |
| 14 #include "chrome_frame/utils.h" | 13 #include "chrome_frame/utils.h" |
| 15 | 14 |
| 16 namespace { | 15 namespace { |
| 17 static base::LazyInstance<ChromeProxyFactory> g_proxy_factory = | 16 static base::LazyInstance<ChromeProxyFactory> g_proxy_factory = |
| 18 LAZY_INSTANCE_INITIALIZER; | 17 LAZY_INSTANCE_INITIALIZER; |
| 19 | 18 |
| 20 struct UserDataHolder : public SyncMessageContext { | 19 struct UserDataHolder : public SyncMessageContext { |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 } | 347 } |
| 349 | 348 |
| 350 void ExternalTabProxy::OnTabClosed() { | 349 void ExternalTabProxy::OnTabClosed() { |
| 351 // TODO(stoyan): | 350 // TODO(stoyan): |
| 352 } | 351 } |
| 353 | 352 |
| 354 void ExternalTabProxy::OnAttachTab( | 353 void ExternalTabProxy::OnAttachTab( |
| 355 const AttachExternalTabParams& attach_params) { | 354 const AttachExternalTabParams& attach_params) { |
| 356 // TODO(stoyan): | 355 // TODO(stoyan): |
| 357 } | 356 } |
| OLD | NEW |