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 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 virtual bool CanCreateWindow( | 136 virtual bool CanCreateWindow( |
137 const GURL& origin, | 137 const GURL& origin, |
138 WindowContainerType container_type, | 138 WindowContainerType container_type, |
139 const content::ResourceContext& context, | 139 const content::ResourceContext& context, |
140 int render_process_id) OVERRIDE; | 140 int render_process_id) OVERRIDE; |
141 virtual std::string GetWorkerProcessTitle( | 141 virtual std::string GetWorkerProcessTitle( |
142 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 142 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
143 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 143 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; |
144 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 144 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
145 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 145 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
146 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; | |
147 virtual net::NetLog* GetNetLog() OVERRIDE; | 146 virtual net::NetLog* GetNetLog() OVERRIDE; |
148 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; | 147 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; |
149 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 148 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
150 virtual bool IsFastShutdownPossible() OVERRIDE; | 149 virtual bool IsFastShutdownPossible() OVERRIDE; |
151 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; | 150 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; |
152 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 151 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
153 const std::string& key, | 152 const std::string& key, |
154 const std::string& value) OVERRIDE; | 153 const std::string& value) OVERRIDE; |
155 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 154 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
156 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 155 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
(...skipping 24 matching lines...) Expand all Loading... |
181 const ViewHostMsg_CreateWindow_Params& params) OVERRIDE; | 180 const ViewHostMsg_CreateWindow_Params& params) OVERRIDE; |
182 #endif | 181 #endif |
183 | 182 |
184 private: | 183 private: |
185 ShellBrowserMainParts* shell_browser_main_parts_; | 184 ShellBrowserMainParts* shell_browser_main_parts_; |
186 }; | 185 }; |
187 | 186 |
188 } // namespace content | 187 } // namespace content |
189 | 188 |
190 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 189 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |