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

Unified Diff: chrome/browser/prefs/command_line_pref_store.cc

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 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
Index: chrome/browser/prefs/command_line_pref_store.cc
diff --git a/chrome/browser/prefs/command_line_pref_store.cc b/chrome/browser/prefs/command_line_pref_store.cc
index 3331ed5b31030b2d1d6ddfe23319b897effb0e49..8d398b66543fe252cbb5983346cd2ec78bc10b03 100644
--- a/chrome/browser/prefs/command_line_pref_store.cc
+++ b/chrome/browser/prefs/command_line_pref_store.cc
@@ -28,12 +28,16 @@ CommandLinePrefStore::CommandLinePrefStore(const CommandLine* command_line)
: command_line_(command_line),
prefs_(new DictionaryValue()) {}
+CommandLinePrefStore::~CommandLinePrefStore() {}
+
PrefStore::PrefReadError CommandLinePrefStore::ReadPrefs() {
ApplySimpleSwitches();
ValidateProxySwitches();
return PrefStore::PREF_READ_ERROR_NONE;
}
+DictionaryValue* CommandLinePrefStore::prefs() { return prefs_.get(); }
+
void CommandLinePrefStore::ApplySimpleSwitches() {
// Look for each switch we know about and set its preference accordingly.
for (size_t i = 0; i < arraysize(string_switch_map_); ++i) {

Powered by Google App Engine
This is Rietveld 408576698