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::CanCreateWindow( |
| 141 const GURL& source_url, |
| 142 WindowContainerType container_type, |
| 143 const content::ResourceContext& context) { |
| 144 return false; |
| 145 } |
| 146 |
| 147 std::string ContentBrowserClient::GetWorkerProcessTitle( |
| 148 const GURL& url, const content::ResourceContext& context) { |
| 149 return std::string(); |
| 150 } |
| 151 |
140 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 152 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
141 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { | 153 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { |
142 return -1; | 154 return -1; |
143 } | 155 } |
144 #endif | 156 #endif |
145 | 157 |
146 } // namespace content | 158 } // namespace content |
OLD | NEW |