diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-12 09:47:05 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-12 09:47:05 +0000 |
commit | d778d6e82dafff6b141f30a7e741d73672450b6f (patch) | |
tree | 6b165d31e724abeeb91df621aa60fb5700697002 /chrome/browser/diagnostics | |
parent | 9a0c6f5832bda3ccd4a113e46c812ea5f333dab5 (diff) | |
download | chromium_src-d778d6e82dafff6b141f30a7e741d73672450b6f.zip chromium_src-d778d6e82dafff6b141f30a7e741d73672450b6f.tar.gz chromium_src-d778d6e82dafff6b141f30a7e741d73672450b6f.tar.bz2 |
Change kNotSignedInProfile to kInitialProfile to better reflect its usage.
Change ProfileManager::GetCurrentProfile to ProfileManager::GetInitialProfile as well.
BUG=none
TEST=no change in profile behavior
Review URL: http://codereview.chromium.org/7619008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/diagnostics')
-rw-r--r-- | chrome/browser/diagnostics/diagnostics_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_test.cc b/chrome/browser/diagnostics/diagnostics_test.cc index dfdf18f..390b0e2 100644 --- a/chrome/browser/diagnostics/diagnostics_test.cc +++ b/chrome/browser/diagnostics/diagnostics_test.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -49,5 +49,5 @@ FilePath DiagnosticTest::GetUserDefaultProfileDir() { FilePath path; if (!PathService::Get(chrome::DIR_USER_DATA, &path)) return FilePath(); - return path.AppendASCII(chrome::kNotSignedInProfile); + return path.AppendASCII(chrome::kInitialProfile); } |