| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |