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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 231 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
232 const GURL& url, | 232 const GURL& url, |
233 WebPreferences* prefs) OVERRIDE; | 233 WebPreferences* prefs) OVERRIDE; |
234 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 234 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
235 const std::string& key, | 235 const std::string& key, |
236 const std::string& value) OVERRIDE; | 236 const std::string& value) OVERRIDE; |
237 virtual void BrowserURLHandlerCreated( | 237 virtual void BrowserURLHandlerCreated( |
238 content::BrowserURLHandler* handler) OVERRIDE; | 238 content::BrowserURLHandler* handler) OVERRIDE; |
239 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 239 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
240 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 240 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
241 virtual void DisableNetwork( | |
pfeldman
2014/04/23 13:00:28
RequestDisableNetwork(content::RenderViewHost* req
eustas
2014/04/29 08:14:42
Removed.
| |
242 content::RenderViewHost* rvh, | |
243 const std::string& client_id, | |
244 bool disable_network) OVERRIDE; | |
241 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; | 245 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; |
242 virtual std::string GetDefaultDownloadName() OVERRIDE; | 246 virtual std::string GetDefaultDownloadName() OVERRIDE; |
243 virtual void DidCreatePpapiPlugin( | 247 virtual void DidCreatePpapiPlugin( |
244 content::BrowserPpapiHost* browser_host) OVERRIDE; | 248 content::BrowserPpapiHost* browser_host) OVERRIDE; |
245 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( | 249 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
246 int plugin_process_id) OVERRIDE; | 250 int plugin_process_id) OVERRIDE; |
247 virtual bool AllowPepperSocketAPI( | 251 virtual bool AllowPepperSocketAPI( |
248 content::BrowserContext* browser_context, | 252 content::BrowserContext* browser_context, |
249 const GURL& url, | 253 const GURL& url, |
250 bool private_api, | 254 bool private_api, |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
297 permissions_policy_delegate_; | 301 permissions_policy_delegate_; |
298 | 302 |
299 friend class DisableWebRtcEncryptionFlagTest; | 303 friend class DisableWebRtcEncryptionFlagTest; |
300 | 304 |
301 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 305 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
302 }; | 306 }; |
303 | 307 |
304 } // namespace chrome | 308 } // namespace chrome |
305 | 309 |
306 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 310 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |