summaryrefslogtreecommitdiffstats
path: root/ios
diff options
context:
space:
mode:
authorsdefresne <sdefresne@chromium.org>2014-11-21 02:33:05 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-21 10:33:26 +0000
commitb2fcde9ab8ab6033a6f9021cd9b3d004248922f4 (patch)
tree135eb4d310d8667e24ceb1f3dbf22d67c1c99d31 /ios
parent721d7933e9d1b511386fedc0f2df7750ab52b5a0 (diff)
downloadchromium_src-b2fcde9ab8ab6033a6f9021cd9b3d004248922f4.zip
chromium_src-b2fcde9ab8ab6033a6f9021cd9b3d004248922f4.tar.gz
chromium_src-b2fcde9ab8ab6033a6f9021cd9b3d004248922f4.tar.bz2
Revert of Expand web::BrowserState to add GetPath() method (patchset #2 id:60001 of https://codereview.chromium.org/740353002/)
Reason for revert: Committed wrong version (without fixing method comments). Original issue's description: > Expand web::BrowserState to add GetPath() method > > Add a method to web::BrowserState returning the path where the > BrowserState data is stored. > > BUG=429756 > > Committed: https://crrev.com/d537d6c355be1a51bbb808e9da214f5595d75f3d > Cr-Commit-Position: refs/heads/master@{#305191} TBR=blundell@chromium.org NOTREECHECKS=true NOTRY=true BUG=429756 Review URL: https://codereview.chromium.org/747913002 Cr-Commit-Position: refs/heads/master@{#305197}
Diffstat (limited to 'ios')
-rw-r--r--ios/web/public/browser_state.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/ios/web/public/browser_state.h b/ios/web/public/browser_state.h
index 67e4192..47c398c 100644
--- a/ios/web/public/browser_state.h
+++ b/ios/web/public/browser_state.h
@@ -7,10 +7,6 @@
#include "base/supports_user_data.h"
-namespace base {
-class FilePath;
-}
-
namespace net {
class URLRequestContextGetter;
}
@@ -27,9 +23,6 @@ class BrowserState : public base::SupportsUserData {
// Return whether this BrowserState is incognito. Default is false.
virtual bool IsOffTheRecord() const = 0;
- // Retrieves the path where the BrowserState data is stored.
- virtual base::FilePath GetPath() const = 0;
-
// Returns the request context information associated with this
// BrowserState.
virtual net::URLRequestContextGetter* GetRequestContext() = 0;