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 CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 virtual bool CanCreateWindow( | 116 virtual bool CanCreateWindow( |
117 const GURL& source_origin, | 117 const GURL& source_origin, |
118 WindowContainerType container_type, | 118 WindowContainerType container_type, |
119 const content::ResourceContext& context, | 119 const content::ResourceContext& context, |
120 int render_process_id) OVERRIDE; | 120 int render_process_id) OVERRIDE; |
121 virtual std::string GetWorkerProcessTitle( | 121 virtual std::string GetWorkerProcessTitle( |
122 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 122 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
123 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 123 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; |
124 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 124 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
125 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 125 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
126 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; | |
127 virtual net::NetLog* GetNetLog() OVERRIDE; | 126 virtual net::NetLog* GetNetLog() OVERRIDE; |
128 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; | 127 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; |
129 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 128 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
130 virtual bool IsFastShutdownPossible() OVERRIDE; | 129 virtual bool IsFastShutdownPossible() OVERRIDE; |
131 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; | 130 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; |
132 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 131 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
133 const std::string& key, | 132 const std::string& key, |
134 const std::string& value) OVERRIDE; | 133 const std::string& value) OVERRIDE; |
135 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 134 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
136 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 135 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
(...skipping 11 matching lines...) Expand all Loading... |
148 #if defined(USE_NSS) | 147 #if defined(USE_NSS) |
149 virtual | 148 virtual |
150 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 149 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
151 const GURL& url) OVERRIDE; | 150 const GURL& url) OVERRIDE; |
152 #endif | 151 #endif |
153 }; | 152 }; |
154 | 153 |
155 } // namespace chrome | 154 } // namespace chrome |
156 | 155 |
157 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 156 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |