| 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_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/browser/content_browser_client.h" | 10 #include "content/browser/content_browser_client.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 content::BrowserContext* browser_context, | 102 content::BrowserContext* browser_context, |
| 103 bool is_web_ui) OVERRIDE; | 103 bool is_web_ui) OVERRIDE; |
| 104 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 104 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 105 const std::string& key, | 105 const std::string& key, |
| 106 const std::string& value) OVERRIDE; | 106 const std::string& value) OVERRIDE; |
| 107 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 107 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
| 108 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 108 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
| 109 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 109 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
| 110 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 110 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
| 111 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 111 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 112 virtual net::URLRequestContextGetter* |
| 113 GetDefaultRequestContextDeprecatedCrBug64339() OVERRIDE; |
| 112 | 114 |
| 113 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 115 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 114 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; | 116 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; |
| 115 #endif | 117 #endif |
| 116 | 118 |
| 117 #if defined(USE_NSS) | 119 #if defined(USE_NSS) |
| 118 virtual | 120 virtual |
| 119 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 121 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 120 const GURL& url) OVERRIDE; | 122 const GURL& url) OVERRIDE; |
| 121 #endif | 123 #endif |
| 122 }; | 124 }; |
| 123 | 125 |
| 124 } // namespace content | 126 } // namespace content |
| 125 | 127 |
| 126 #endif // CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 128 #endif // CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |