OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ios/web/public/test/test_browser_state.h" | 5 #include "ios/web/public/test/test_browser_state.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 | 8 |
9 namespace web { | 9 namespace web { |
10 TestBrowserState::TestBrowserState() { | 10 TestBrowserState::TestBrowserState() { |
11 } | 11 } |
12 | 12 |
13 TestBrowserState::~TestBrowserState() { | 13 TestBrowserState::~TestBrowserState() { |
14 } | 14 } |
15 | 15 |
16 bool TestBrowserState::IsOffTheRecord() const { | 16 bool TestBrowserState::IsOffTheRecord() const { |
17 return false; | 17 return false; |
18 } | 18 } |
19 | 19 |
20 base::FilePath TestBrowserState::GetPath() const { | 20 base::FilePath TestBrowserState::GetStatePath() const { |
21 return base::FilePath(); | 21 return base::FilePath(); |
22 } | 22 } |
23 | 23 |
24 net::URLRequestContextGetter* TestBrowserState::GetRequestContext() { | 24 net::URLRequestContextGetter* TestBrowserState::GetRequestContext() { |
25 return nullptr; | 25 return nullptr; |
26 } | 26 } |
27 } // namespace web | 27 } // namespace web |
OLD | NEW |