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
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 path;
   if (!PathService::Get(chrome::DIR_USER_DATA, &path))
     return FilePath();
-  return path.AppendASCII(chrome::kNotSignedInProfile);
+  return path.AppendASCII(chrome::kInitialProfile);
 }