| 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/content_browser_client.h" | 5 #include "content/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "content/browser/ssl/ssl_client_auth_handler.h" | 8 #include "content/browser/ssl/ssl_client_auth_handler.h" |
| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 int render_view_id, | 130 int render_view_id, |
| 131 bool worker) { | 131 bool worker) { |
| 132 } | 132 } |
| 133 | 133 |
| 134 void ContentBrowserClient::CancelDesktopNotification( | 134 void ContentBrowserClient::CancelDesktopNotification( |
| 135 int render_process_id, | 135 int render_process_id, |
| 136 int render_view_id, | 136 int render_view_id, |
| 137 int notification_id) { | 137 int notification_id) { |
| 138 } | 138 } |
| 139 | 139 |
| 140 bool ContentBrowserClient::CheckBackgroundPermission( |
| 141 const GURL& source_url, const content::ResourceContext& context) { |
| 142 return false; |
| 143 } |
| 144 |
| 145 std::string ContentBrowserClient::GetWorkerProcessTitle( |
| 146 const GURL& url, const content::ResourceContext& context) { |
| 147 return std::string(); |
| 148 } |
| 149 |
| 140 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 150 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 141 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { | 151 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { |
| 142 return -1; | 152 return -1; |
| 143 } | 153 } |
| 144 #endif | 154 #endif |
| 145 | 155 |
| 146 } // namespace content | 156 } // namespace content |
| OLD | NEW |