| 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/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "ui/gfx/image/image_skia.h" | 8 #include "ui/gfx/image/image_skia.h" |
| 9 #include "url/gurl.h" | 9 #include "url/gurl.h" |
| 10 | 10 |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 } | 248 } |
| 249 | 249 |
| 250 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { | 250 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { |
| 251 return NULL; | 251 return NULL; |
| 252 } | 252 } |
| 253 | 253 |
| 254 bool ContentBrowserClient::IsFastShutdownPossible() { | 254 bool ContentBrowserClient::IsFastShutdownPossible() { |
| 255 return true; | 255 return true; |
| 256 } | 256 } |
| 257 | 257 |
| 258 bool ContentBrowserClient::IsRenderViewHostForBackground( |
| 259 RenderViewHost* render_view_host) { |
| 260 return false; |
| 261 } |
| 262 |
| 258 base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { | 263 base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { |
| 259 return base::FilePath(); | 264 return base::FilePath(); |
| 260 } | 265 } |
| 261 | 266 |
| 262 std::string ContentBrowserClient::GetDefaultDownloadName() { | 267 std::string ContentBrowserClient::GetDefaultDownloadName() { |
| 263 return std::string(); | 268 return std::string(); |
| 264 } | 269 } |
| 265 | 270 |
| 266 BrowserPpapiHost* | 271 BrowserPpapiHost* |
| 267 ContentBrowserClient::GetExternalBrowserPpapiHost(int plugin_process_id) { | 272 ContentBrowserClient::GetExternalBrowserPpapiHost(int plugin_process_id) { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs() { | 314 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs() { |
| 310 return false; | 315 return false; |
| 311 } | 316 } |
| 312 | 317 |
| 313 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess( | 318 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess( |
| 314 int render_process_id) { | 319 int render_process_id) { |
| 315 return NULL; | 320 return NULL; |
| 316 } | 321 } |
| 317 | 322 |
| 318 } // namespace content | 323 } // namespace content |
| OLD | NEW |