| 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 #include "content/shell/shell_content_browser_client.h" | 5 #include "content/shell/shell_content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "content/shell/shell.h" | 9 #include "content/shell/shell.h" |
| 10 #include "content/shell/shell_browser_main.h" | 10 #include "content/shell/shell_browser_main.h" |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 289 |
| 290 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { | 290 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { |
| 291 return NULL; | 291 return NULL; |
| 292 } | 292 } |
| 293 | 293 |
| 294 bool ShellContentBrowserClient::IsFastShutdownPossible() { | 294 bool ShellContentBrowserClient::IsFastShutdownPossible() { |
| 295 return true; | 295 return true; |
| 296 } | 296 } |
| 297 | 297 |
| 298 void ShellContentBrowserClient::OverrideWebkitPrefs(RenderViewHost* rvh, | 298 void ShellContentBrowserClient::OverrideWebkitPrefs(RenderViewHost* rvh, |
| 299 const GURL& url, |
| 299 WebPreferences* prefs) { | 300 WebPreferences* prefs) { |
| 300 } | 301 } |
| 301 | 302 |
| 302 void ShellContentBrowserClient::UpdateInspectorSetting( | 303 void ShellContentBrowserClient::UpdateInspectorSetting( |
| 303 RenderViewHost* rvh, const std::string& key, const std::string& value) { | 304 RenderViewHost* rvh, const std::string& key, const std::string& value) { |
| 304 } | 305 } |
| 305 | 306 |
| 306 void ShellContentBrowserClient::ClearInspectorSettings(RenderViewHost* rvh) { | 307 void ShellContentBrowserClient::ClearInspectorSettings(RenderViewHost* rvh) { |
| 307 } | 308 } |
| 308 | 309 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 #endif | 343 #endif |
| 343 | 344 |
| 344 #if defined(USE_NSS) | 345 #if defined(USE_NSS) |
| 345 crypto::CryptoModuleBlockingPasswordDelegate* | 346 crypto::CryptoModuleBlockingPasswordDelegate* |
| 346 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 347 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
| 347 return NULL; | 348 return NULL; |
| 348 } | 349 } |
| 349 #endif | 350 #endif |
| 350 | 351 |
| 351 } // namespace content | 352 } // namespace content |
| OLD | NEW |