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

Side by Side Diff: ios/web/public/test/test_browser_state.cc

Issue 964403002: Upstream BrowserState::GetStatePath() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix client code Created 5 years, 9 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 | « ios/web/public/test/test_browser_state.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « ios/web/public/test/test_browser_state.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698