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

Side by Side Diff: content/shell/browser/shell_content_browser_client.cc

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/shell/browser/shell_content_browser_client.h" 5 #include "content/shell/browser/shell_content_browser_client.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/base_switches.h" 10 #include "base/base_switches.h"
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 } 246 }
247 247
248 QuotaPermissionContext* 248 QuotaPermissionContext*
249 ShellContentBrowserClient::CreateQuotaPermissionContext() { 249 ShellContentBrowserClient::CreateQuotaPermissionContext() {
250 return new ShellQuotaPermissionContext(); 250 return new ShellQuotaPermissionContext();
251 } 251 }
252 252
253 void ShellContentBrowserClient::SelectClientCertificate( 253 void ShellContentBrowserClient::SelectClientCertificate(
254 WebContents* web_contents, 254 WebContents* web_contents,
255 net::SSLCertRequestInfo* cert_request_info, 255 net::SSLCertRequestInfo* cert_request_info,
256 scoped_ptr<ClientCertificateDelegate> delegate) { 256 std::unique_ptr<ClientCertificateDelegate> delegate) {
257 if (!select_client_certificate_callback_.is_null()) 257 if (!select_client_certificate_callback_.is_null())
258 select_client_certificate_callback_.Run(); 258 select_client_certificate_callback_.Run();
259 } 259 }
260 260
261 SpeechRecognitionManagerDelegate* 261 SpeechRecognitionManagerDelegate*
262 ShellContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { 262 ShellContentBrowserClient::CreateSpeechRecognitionManagerDelegate() {
263 return new ShellSpeechRecognitionManagerDelegate(); 263 return new ShellSpeechRecognitionManagerDelegate();
264 } 264 }
265 265
266 net::NetLog* ShellContentBrowserClient::GetNetLog() { 266 net::NetLog* ShellContentBrowserClient::GetNetLog() {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 ShellBrowserContext* 350 ShellBrowserContext*
351 ShellContentBrowserClient::off_the_record_browser_context() { 351 ShellContentBrowserClient::off_the_record_browser_context() {
352 return shell_browser_main_parts_->off_the_record_browser_context(); 352 return shell_browser_main_parts_->off_the_record_browser_context();
353 } 353 }
354 354
355 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { 355 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() {
356 return new ShellAccessTokenStore(browser_context()); 356 return new ShellAccessTokenStore(browser_context());
357 } 357 }
358 358
359 } // namespace content 359 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/browser/shell_content_browser_client.h ('k') | content/shell/browser/shell_devtools_frontend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698