| 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 "ash/shell/content_client/shell_content_browser_client.h" | 5 #include "ash/shell/content_client/shell_content_browser_client.h" |
| 6 | 6 |
| 7 #include "ash/shell/content_client/shell_browser_main_parts.h" | 7 #include "ash/shell/content_client/shell_browser_main_parts.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "content/public/browser/resource_dispatcher_host.h" | 10 #include "content/public/browser/resource_dispatcher_host.h" |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 return NULL; | 301 return NULL; |
| 302 } | 302 } |
| 303 | 303 |
| 304 bool ShellContentBrowserClient::IsFastShutdownPossible() { | 304 bool ShellContentBrowserClient::IsFastShutdownPossible() { |
| 305 return true; | 305 return true; |
| 306 } | 306 } |
| 307 | 307 |
| 308 void ShellContentBrowserClient::OverrideWebkitPrefs( | 308 void ShellContentBrowserClient::OverrideWebkitPrefs( |
| 309 content::RenderViewHost* rvh, | 309 content::RenderViewHost* rvh, |
| 310 const GURL& url, | 310 const GURL& url, |
| 311 WebPreferences* prefs) { | 311 webkit_glue::WebPreferences* prefs) { |
| 312 } | 312 } |
| 313 | 313 |
| 314 void ShellContentBrowserClient::UpdateInspectorSetting( | 314 void ShellContentBrowserClient::UpdateInspectorSetting( |
| 315 content::RenderViewHost* rvh, | 315 content::RenderViewHost* rvh, |
| 316 const std::string& key, | 316 const std::string& key, |
| 317 const std::string& value) { | 317 const std::string& value) { |
| 318 } | 318 } |
| 319 | 319 |
| 320 void ShellContentBrowserClient::ClearInspectorSettings( | 320 void ShellContentBrowserClient::ClearInspectorSettings( |
| 321 content::RenderViewHost* rvh) { | 321 content::RenderViewHost* rvh) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 return NULL; | 364 return NULL; |
| 365 } | 365 } |
| 366 #endif | 366 #endif |
| 367 | 367 |
| 368 content::ShellBrowserContext* ShellContentBrowserClient::browser_context() { | 368 content::ShellBrowserContext* ShellContentBrowserClient::browser_context() { |
| 369 return shell_browser_main_parts_->browser_context(); | 369 return shell_browser_main_parts_->browser_context(); |
| 370 } | 370 } |
| 371 | 371 |
| 372 } // namespace examples | 372 } // namespace examples |
| 373 } // namespace views | 373 } // namespace views |
| OLD | NEW |