| 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/public/browser/resource_dispatcher_host.h" | 9 #include "content/public/browser/resource_dispatcher_host.h" |
| 10 #include "content/shell/shell.h" | 10 #include "content/shell/shell.h" |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 } | 292 } |
| 293 | 293 |
| 294 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { | 294 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { |
| 295 return NULL; | 295 return NULL; |
| 296 } | 296 } |
| 297 | 297 |
| 298 bool ShellContentBrowserClient::IsFastShutdownPossible() { | 298 bool ShellContentBrowserClient::IsFastShutdownPossible() { |
| 299 return true; | 299 return true; |
| 300 } | 300 } |
| 301 | 301 |
| 302 void ShellContentBrowserClient::OverrideWebkitPrefs(RenderViewHost* rvh, | 302 void ShellContentBrowserClient::OverrideWebkitPrefs( |
| 303 const GURL& url, | 303 RenderViewHost* rvh, |
| 304 WebPreferences* prefs) { | 304 const GURL& url, |
| 305 webkit_glue::WebPreferences* prefs) { |
| 305 } | 306 } |
| 306 | 307 |
| 307 void ShellContentBrowserClient::UpdateInspectorSetting( | 308 void ShellContentBrowserClient::UpdateInspectorSetting( |
| 308 RenderViewHost* rvh, const std::string& key, const std::string& value) { | 309 RenderViewHost* rvh, const std::string& key, const std::string& value) { |
| 309 } | 310 } |
| 310 | 311 |
| 311 void ShellContentBrowserClient::ClearInspectorSettings(RenderViewHost* rvh) { | 312 void ShellContentBrowserClient::ClearInspectorSettings(RenderViewHost* rvh) { |
| 312 } | 313 } |
| 313 | 314 |
| 314 void ShellContentBrowserClient::BrowserURLHandlerCreated( | 315 void ShellContentBrowserClient::BrowserURLHandlerCreated( |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 353 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
| 353 return NULL; | 354 return NULL; |
| 354 } | 355 } |
| 355 #endif | 356 #endif |
| 356 | 357 |
| 357 ShellBrowserContext* ShellContentBrowserClient::browser_context() { | 358 ShellBrowserContext* ShellContentBrowserClient::browser_context() { |
| 358 return shell_browser_main_parts_->browser_context(); | 359 return shell_browser_main_parts_->browser_context(); |
| 359 } | 360 } |
| 360 | 361 |
| 361 } // namespace content | 362 } // namespace content |
| OLD | NEW |