summaryrefslogtreecommitdiffstats
path: root/chrome/test/base/testing_profile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/base/testing_profile.cc')
-rw-r--r--chrome/test/base/testing_profile.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
index ffffe3f..9ee170d 100644
--- a/chrome/test/base/testing_profile.cc
+++ b/chrome/test/base/testing_profile.cc
@@ -731,10 +731,6 @@ void TestingProfile::SetID(const std::wstring& id) {
id_ = id;
}
-bool TestingProfile::DidLastSessionExitCleanly() {
- return last_session_exited_cleanly_;
-}
-
bool TestingProfile::IsSameProfile(Profile *p) {
return this == p;
}
@@ -798,6 +794,10 @@ bool TestingProfile::WasCreatedByVersionOrLater(const std::string& version) {
return true;
}
+bool TestingProfile::DidLastSessionExitCleanly() {
+ return last_session_exited_cleanly_;
+}
+
base::Callback<ChromeURLDataManagerBackend*(void)>
TestingProfile::GetChromeURLDataManagerBackendGetter() const {
return base::Callback<ChromeURLDataManagerBackend*(void)>();