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_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 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 virtual std::string GetWorkerProcessTitle( | 234 virtual std::string GetWorkerProcessTitle( |
235 const GURL& url, content::ResourceContext* context) OVERRIDE; | 235 const GURL& url, content::ResourceContext* context) OVERRIDE; |
236 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 236 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
237 virtual content::SpeechRecognitionManagerDelegate* | 237 virtual content::SpeechRecognitionManagerDelegate* |
238 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 238 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
239 virtual net::NetLog* GetNetLog() OVERRIDE; | 239 virtual net::NetLog* GetNetLog() OVERRIDE; |
240 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 240 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
241 virtual bool IsFastShutdownPossible() OVERRIDE; | 241 virtual bool IsFastShutdownPossible() OVERRIDE; |
242 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 242 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
243 const GURL& url, | 243 const GURL& url, |
244 WebPreferences* prefs) OVERRIDE; | 244 content::WebPreferences* prefs) OVERRIDE; |
245 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 245 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
246 const std::string& key, | 246 const std::string& key, |
247 const std::string& value) OVERRIDE; | 247 const std::string& value) OVERRIDE; |
248 virtual void BrowserURLHandlerCreated( | 248 virtual void BrowserURLHandlerCreated( |
249 content::BrowserURLHandler* handler) OVERRIDE; | 249 content::BrowserURLHandler* handler) OVERRIDE; |
250 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 250 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
251 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 251 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
252 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; | 252 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; |
253 virtual std::string GetDefaultDownloadName() OVERRIDE; | 253 virtual std::string GetDefaultDownloadName() OVERRIDE; |
254 virtual void DidCreatePpapiPlugin( | 254 virtual void DidCreatePpapiPlugin( |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 prerender::PrerenderTracker* prerender_tracker_; | 323 prerender::PrerenderTracker* prerender_tracker_; |
324 | 324 |
325 friend class DisableWebRtcEncryptionFlagTest; | 325 friend class DisableWebRtcEncryptionFlagTest; |
326 | 326 |
327 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 327 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
328 }; | 328 }; |
329 | 329 |
330 } // namespace chrome | 330 } // namespace chrome |
331 | 331 |
332 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 332 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |