OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |