diff options
author | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 12:54:04 +0000 |
---|---|---|
committer | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 12:54:04 +0000 |
commit | f09c718082535c0de7f066cb63f95809070f35a6 (patch) | |
tree | 0c7bbd37cccef8748b8c6e1768d2d95f7989a1a0 /chrome/common/pref_service.h | |
parent | 15567be3dd3dacb0abae800ede436eac8123482c (diff) | |
download | chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.zip chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.tar.gz chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.tar.bz2 |
NO CODE CHANGE.
Fix files with lines > 80 cols. Part 2.
Review URL: http://codereview.chromium.org/40226
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_service.h')
-rw-r--r-- | chrome/common/pref_service.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/common/pref_service.h b/chrome/common/pref_service.h index f5377d2..3ab6965 100644 --- a/chrome/common/pref_service.h +++ b/chrome/common/pref_service.h @@ -56,8 +56,8 @@ class PrefService : public NonThreadSafe { // browser.window_placement). const std::wstring name() const { return name_; } - // Returns the value of the Preference. If there is no user specified value, - // it returns the default value. + // Returns the value of the Preference. If there is no user specified + // value, it returns the default value. const Value* GetValue() const; // Returns true if the current value matches the default value. @@ -76,7 +76,8 @@ class PrefService : public NonThreadSafe { DISALLOW_COPY_AND_ASSIGN(Preference); }; - // |pref_filename| is the path to the prefs file we will try to load or save to. + // |pref_filename| is the path to the prefs file we will try to load or save + // to. explicit PrefService(const FilePath& pref_filename); ~PrefService(); @@ -128,8 +129,8 @@ class PrefService : public NonThreadSafe { bool IsPrefRegistered(const wchar_t* path); // If the path is valid and the value at the end of the path matches the type - // specified, it will return the specified value. Otherwise, the default value - // (set when the pref was registered) will be returned. + // specified, it will return the specified value. Otherwise, the default + // value (set when the pref was registered) will be returned. bool GetBoolean(const wchar_t* path) const; int GetInteger(const wchar_t* path) const; double GetReal(const wchar_t* path) const; |