| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ | 5 #ifndef CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ |
| 6 #define CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ | 6 #define CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlwin.h> | 9 #include <atlwin.h> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 } | 85 } |
| 86 | 86 |
| 87 virtual void SendProxyConfig(const std::string& p) { | 87 virtual void SendProxyConfig(const std::string& p) { |
| 88 AutomationProxy::SendProxyConfig(p); | 88 AutomationProxy::SendProxyConfig(p); |
| 89 } | 89 } |
| 90 | 90 |
| 91 protected: | 91 protected: |
| 92 friend class AutomationProxyCacheEntry; | 92 friend class AutomationProxyCacheEntry; |
| 93 ChromeFrameAutomationProxyImpl(AutomationProxyCacheEntry* entry, | 93 ChromeFrameAutomationProxyImpl(AutomationProxyCacheEntry* entry, |
| 94 std::string channel_id, | 94 std::string channel_id, |
| 95 int launch_timeout); | 95 base::TimeDelta launch_timeout); |
| 96 | 96 |
| 97 class CFMsgDispatcher; | 97 class CFMsgDispatcher; |
| 98 class TabProxyNotificationMessageFilter; | 98 class TabProxyNotificationMessageFilter; |
| 99 | 99 |
| 100 scoped_refptr<CFMsgDispatcher> sync_; | 100 scoped_refptr<CFMsgDispatcher> sync_; |
| 101 scoped_refptr<TabProxyNotificationMessageFilter> message_filter_; | 101 scoped_refptr<TabProxyNotificationMessageFilter> message_filter_; |
| 102 AutomationProxyCacheEntry* proxy_entry_; | 102 AutomationProxyCacheEntry* proxy_entry_; |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 // This class contains information used for launching chrome. | 105 // This class contains information used for launching chrome. |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 | 526 |
| 527 // Set to true if Chrome Frame should tell Chrome to delay shutdown after | 527 // Set to true if Chrome Frame should tell Chrome to delay shutdown after |
| 528 // we break a connection. Currently used only as part of a field trial. | 528 // we break a connection. Currently used only as part of a field trial. |
| 529 bool send_shutdown_delay_switch_; | 529 bool send_shutdown_delay_switch_; |
| 530 | 530 |
| 531 friend class BeginNavigateContext; | 531 friend class BeginNavigateContext; |
| 532 friend class CreateExternalTabContext; | 532 friend class CreateExternalTabContext; |
| 533 }; | 533 }; |
| 534 | 534 |
| 535 #endif // CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ | 535 #endif // CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ |
| OLD | NEW |