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

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

Issue 468033002: Remove worker process related codes from ContentBrowserClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 4 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
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | extensions/browser/info_map.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 bool user_gesture, 252 bool user_gesture,
253 bool opener_suppressed, 253 bool opener_suppressed,
254 ResourceContext* context, 254 ResourceContext* context,
255 int render_process_id, 255 int render_process_id,
256 int opener_id, 256 int opener_id,
257 bool* no_javascript_access) { 257 bool* no_javascript_access) {
258 *no_javascript_access = false; 258 *no_javascript_access = false;
259 return true; 259 return true;
260 } 260 }
261 261
262 std::string ContentBrowserClient::GetWorkerProcessTitle(
263 const GURL& url, ResourceContext* context) {
264 return std::string();
265 }
266
267 SpeechRecognitionManagerDelegate* 262 SpeechRecognitionManagerDelegate*
268 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() { 263 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() {
269 return NULL; 264 return NULL;
270 } 265 }
271 266
272 net::NetLog* ContentBrowserClient::GetNetLog() { 267 net::NetLog* ContentBrowserClient::GetNetLog() {
273 return NULL; 268 return NULL;
274 } 269 }
275 270
276 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { 271 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 339
345 #if defined(VIDEO_HOLE) 340 #if defined(VIDEO_HOLE)
346 ExternalVideoSurfaceContainer* 341 ExternalVideoSurfaceContainer*
347 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( 342 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer(
348 WebContents* web_contents) { 343 WebContents* web_contents) {
349 return NULL; 344 return NULL;
350 } 345 }
351 #endif 346 #endif
352 347
353 } // namespace content 348 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | extensions/browser/info_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698