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

Side by Side Diff: chrome/browser/ui/webui/flags_ui.cc

Issue 6905044: Refactor preference syncing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Self review Created 9 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/webui/flags_ui.h" 5 #include "chrome/browser/ui/webui/flags_ui.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
10 #include "base/values.h" 10 #include "base/values.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 } 217 }
218 218
219 // static 219 // static
220 RefCountedMemory* FlagsUI::GetFaviconResourceBytes() { 220 RefCountedMemory* FlagsUI::GetFaviconResourceBytes() {
221 return ResourceBundle::GetSharedInstance(). 221 return ResourceBundle::GetSharedInstance().
222 LoadDataResourceBytes(IDR_FLAGS); 222 LoadDataResourceBytes(IDR_FLAGS);
223 } 223 }
224 224
225 // static 225 // static
226 void FlagsUI::RegisterPrefs(PrefService* prefs) { 226 void FlagsUI::RegisterPrefs(PrefService* prefs) {
227 prefs->RegisterListPref(prefs::kEnabledLabsExperiments); 227 prefs->RegisterListPref(prefs::kEnabledLabsExperiments,
228 false /* don't sync pref */);
228 } 229 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698