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

Side by Side Diff: content/public/test/test_browser_context.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
« no previous file with comments | « content/public/test/test_browser_context.h ('k') | content/public/test/test_browser_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/test/test_browser_context.h" 5 #include "content/public/test/test_browser_context.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/test/null_task_runner.h" 10 #include "base/test/null_task_runner.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 base::FilePath TestBrowserContext::TakePath() { 55 base::FilePath TestBrowserContext::TakePath() {
56 return browser_context_dir_.Take(); 56 return browser_context_dir_.Take();
57 } 57 }
58 58
59 void TestBrowserContext::SetSpecialStoragePolicy( 59 void TestBrowserContext::SetSpecialStoragePolicy(
60 storage::SpecialStoragePolicy* policy) { 60 storage::SpecialStoragePolicy* policy) {
61 special_storage_policy_ = policy; 61 special_storage_policy_ = policy;
62 } 62 }
63 63
64 void TestBrowserContext::SetPermissionManager( 64 void TestBrowserContext::SetPermissionManager(
65 scoped_ptr<PermissionManager> permission_manager) { 65 std::unique_ptr<PermissionManager> permission_manager) {
66 permission_manager_ = std::move(permission_manager); 66 permission_manager_ = std::move(permission_manager);
67 } 67 }
68 68
69 base::FilePath TestBrowserContext::GetPath() const { 69 base::FilePath TestBrowserContext::GetPath() const {
70 return browser_context_dir_.path(); 70 return browser_context_dir_.path();
71 } 71 }
72 72
73 scoped_ptr<ZoomLevelDelegate> TestBrowserContext::CreateZoomLevelDelegate( 73 std::unique_ptr<ZoomLevelDelegate> TestBrowserContext::CreateZoomLevelDelegate(
74 const base::FilePath& partition_path) { 74 const base::FilePath& partition_path) {
75 return scoped_ptr<ZoomLevelDelegate>(); 75 return std::unique_ptr<ZoomLevelDelegate>();
76 } 76 }
77 77
78 bool TestBrowserContext::IsOffTheRecord() const { 78 bool TestBrowserContext::IsOffTheRecord() const {
79 return false; 79 return false;
80 } 80 }
81 81
82 DownloadManagerDelegate* TestBrowserContext::GetDownloadManagerDelegate() { 82 DownloadManagerDelegate* TestBrowserContext::GetDownloadManagerDelegate() {
83 return NULL; 83 return NULL;
84 } 84 }
85 85
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 net::URLRequestContextGetter* 152 net::URLRequestContextGetter*
153 TestBrowserContext::CreateRequestContextForStoragePartition( 153 TestBrowserContext::CreateRequestContextForStoragePartition(
154 const base::FilePath& partition_path, 154 const base::FilePath& partition_path,
155 bool in_memory, 155 bool in_memory,
156 ProtocolHandlerMap* protocol_handlers, 156 ProtocolHandlerMap* protocol_handlers,
157 URLRequestInterceptorScopedVector request_interceptors) { 157 URLRequestInterceptorScopedVector request_interceptors) {
158 return nullptr; 158 return nullptr;
159 } 159 }
160 160
161 } // namespace content 161 } // namespace content
OLDNEW
« no previous file with comments | « content/public/test/test_browser_context.h ('k') | content/public/test/test_browser_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698