OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <string> | 10 #include <string> |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 return AutomationProxy::Send(msg); | 85 return AutomationProxy::Send(msg); |
86 } | 86 } |
87 | 87 |
88 virtual void SendProxyConfig(const std::string& p) { | 88 virtual void SendProxyConfig(const std::string& p) { |
89 AutomationProxy::SendProxyConfig(p); | 89 AutomationProxy::SendProxyConfig(p); |
90 } | 90 } |
91 | 91 |
92 protected: | 92 protected: |
93 friend class AutomationProxyCacheEntry; | 93 friend class AutomationProxyCacheEntry; |
94 ChromeFrameAutomationProxyImpl(AutomationProxyCacheEntry* entry, | 94 ChromeFrameAutomationProxyImpl(AutomationProxyCacheEntry* entry, |
95 std::string channel_id, | |
96 int launch_timeout); | 95 int launch_timeout); |
97 | 96 |
98 class CFMsgDispatcher; | 97 class CFMsgDispatcher; |
99 class TabProxyNotificationMessageFilter; | 98 class TabProxyNotificationMessageFilter; |
100 | 99 |
101 scoped_refptr<CFMsgDispatcher> sync_; | 100 scoped_refptr<CFMsgDispatcher> sync_; |
102 scoped_refptr<TabProxyNotificationMessageFilter> message_filter_; | 101 scoped_refptr<TabProxyNotificationMessageFilter> message_filter_; |
103 AutomationProxyCacheEntry* proxy_entry_; | 102 AutomationProxyCacheEntry* proxy_entry_; |
104 }; | 103 }; |
105 | 104 |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 // set to true if the host needs to get notified of all top level navigations | 555 // set to true if the host needs to get notified of all top level navigations |
557 // in this page. This typically applies to hosts which would render the new | 556 // in this page. This typically applies to hosts which would render the new |
558 // page without chrome frame. Defaults to false. | 557 // page without chrome frame. Defaults to false. |
559 bool route_all_top_level_navigations_; | 558 bool route_all_top_level_navigations_; |
560 | 559 |
561 friend class BeginNavigateContext; | 560 friend class BeginNavigateContext; |
562 friend class CreateExternalTabContext; | 561 friend class CreateExternalTabContext; |
563 }; | 562 }; |
564 | 563 |
565 #endif // CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ | 564 #endif // CHROME_FRAME_CHROME_FRAME_AUTOMATION_H_ |
OLD | NEW |