diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-30 21:18:51 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-30 21:18:51 +0000 |
commit | 9acc48601ea4aff4e5ec977c0dd089e887ba5ffd (patch) | |
tree | 9c0ef6715ab756b6c8eafb5f4385eaab73a3a8ab /chrome/browser/profile.h | |
parent | 8d7690b29c0572c62bbe72817ac3b5195bf38e42 (diff) | |
download | chromium_src-9acc48601ea4aff4e5ec977c0dd089e887ba5ffd.zip chromium_src-9acc48601ea4aff4e5ec977c0dd089e887ba5ffd.tar.gz chromium_src-9acc48601ea4aff4e5ec977c0dd089e887ba5ffd.tar.bz2 |
Add -profile command line switch
Review URL: http://codereview.chromium.org/384062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33335 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r-- | chrome/browser/profile.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h index 8b0eaae..1f3c4a3 100644 --- a/chrome/browser/profile.h +++ b/chrome/browser/profile.h @@ -307,12 +307,6 @@ class Profile { // Returns true if this profile has a session service. virtual bool HasSessionService() const = 0; - // Convenience functions to get & set the name and ID of the profile. - virtual std::wstring GetName() = 0; - virtual void SetName(const std::wstring& name) = 0; - virtual std::wstring GetID() = 0; - virtual void SetID(const std::wstring& id) = 0; - // Returns true if the last time this profile was open it was exited cleanly. virtual bool DidLastSessionExitCleanly() = 0; @@ -442,10 +436,6 @@ class ProfileImpl : public Profile, virtual SessionService* GetSessionService(); virtual void ShutdownSessionService(); virtual bool HasSessionService() const; - virtual std::wstring GetName(); - virtual void SetName(const std::wstring& name); - virtual std::wstring GetID(); - virtual void SetID(const std::wstring& id); virtual bool DidLastSessionExitCleanly(); virtual BookmarkModel* GetBookmarkModel(); virtual bool IsSameProfile(Profile* profile); |