| Index: chrome/browser/profiles/profiles_state.h
 | 
| diff --git a/chrome/browser/profiles/profiles_state.h b/chrome/browser/profiles/profiles_state.h
 | 
| index 2858e62cdb9a21c89abb619388c362c8a644196a..3f6debcf00edb0055b872d6853420766e9e62403 100644
 | 
| --- a/chrome/browser/profiles/profiles_state.h
 | 
| +++ b/chrome/browser/profiles/profiles_state.h
 | 
| @@ -5,6 +5,9 @@
 | 
|  #ifndef CHROME_BROWSER_PROFILES_PROFILES_STATE_H_
 | 
|  #define CHROME_BROWSER_PROFILES_PROFILES_STATE_H_
 | 
|  
 | 
| +#include "base/strings/string16.h"
 | 
| +
 | 
| +class Browser;
 | 
|  class PrefRegistrySimple;
 | 
|  namespace base { class FilePath; }
 | 
|  
 | 
| @@ -26,6 +29,9 @@ base::FilePath GetProfilePrefsPath(const base::FilePath& profile_dir);
 | 
|  // Register multi-profile related preferences in Local State.
 | 
|  void RegisterPrefs(PrefRegistrySimple* registry);
 | 
|  
 | 
| +// Returns the display name of the active on-the-record profile (or guest).
 | 
| +string16 GetActiveProfileDisplayName(Browser* browser);
 | 
| +
 | 
|  }  // namespace profiles
 | 
|  
 | 
|  #endif  // CHROME_BROWSER_PROFILES_PROFILES_STATE_H_
 | 
| 
 |