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

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

Issue 2398783002: Rename a bunch of Mojo Application stuff to reference Services. (Closed)
Patch Set: . Created 4 years, 2 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') | content/public/child/child_thread.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 "base/guid.h" 8 #include "base/guid.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "content/public/browser/client_certificate_delegate.h" 10 #include "content/public/browser/client_certificate_delegate.h"
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 const GURL& url) { 362 const GURL& url) {
363 return false; 363 return false;
364 } 364 }
365 365
366 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( 366 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs(
367 BrowserContext* browser_context, 367 BrowserContext* browser_context,
368 const GURL& url) { 368 const GURL& url) {
369 return false; 369 return false;
370 } 370 }
371 371
372 std::string ContentBrowserClient::GetShellUserIdForBrowserContext( 372 std::string ContentBrowserClient::GetServiceUserIdForBrowserContext(
373 BrowserContext* browser_context) { 373 BrowserContext* browser_context) {
374 return base::GenerateGUID(); 374 return base::GenerateGUID();
375 } 375 }
376 376
377 PresentationServiceDelegate* 377 PresentationServiceDelegate*
378 ContentBrowserClient::GetPresentationServiceDelegate( 378 ContentBrowserClient::GetPresentationServiceDelegate(
379 WebContents* web_contents) { 379 WebContents* web_contents) {
380 return nullptr; 380 return nullptr;
381 } 381 }
382 382
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 return false; 424 return false;
425 } 425 }
426 #endif // defined(OS_WIN) 426 #endif // defined(OS_WIN)
427 427
428 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( 428 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay(
429 const std::string& name) { 429 const std::string& name) {
430 return nullptr; 430 return nullptr;
431 } 431 }
432 432
433 } // namespace content 433 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/child/child_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698