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 #include "content/browser/mock_content_browser_client.h" | 5 #include "content/browser/mock_content_browser_client.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "content/browser/webui/empty_web_ui_factory.h" | 9 #include "content/browser/webui/empty_web_ui_factory.h" |
10 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 } | 190 } |
191 #endif | 191 #endif |
192 | 192 |
193 #if defined(USE_NSS) | 193 #if defined(USE_NSS) |
194 crypto::CryptoModuleBlockingPasswordDelegate* | 194 crypto::CryptoModuleBlockingPasswordDelegate* |
195 MockContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 195 MockContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
196 return NULL; | 196 return NULL; |
197 } | 197 } |
198 #endif | 198 #endif |
199 | 199 |
| 200 void MockContentBrowserClient::ClearCache(RenderViewHost* rvh) { |
| 201 } |
| 202 |
| 203 void MockContentBrowserClient::ClearCookies(RenderViewHost* rvh) { |
| 204 } |
| 205 |
200 } // namespace content | 206 } // namespace content |
OLD | NEW |