Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(865)

Unified Diff: chrome/common/pref_service.h

Issue 40226: Fix files with lines > 80 cols. Part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/os_exchange_data_unittest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/pref_service.h
===================================================================
--- chrome/common/pref_service.h (revision 11111)
+++ chrome/common/pref_service.h (working copy)
@@ -56,8 +56,8 @@
// 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 @@
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 @@
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;
« no previous file with comments | « chrome/common/os_exchange_data_unittest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698