Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: content/browser/content_browser_client.cc

Issue 7135003: Remove last extension dependencies from content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/browser/content_browser_client.h ('k') | content/browser/renderer_host/buffered_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698