| 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/utf_string_conversions.h" |
| 10 #include "base/values.h" | 11 #include "base/values.h" |
| 11 #include "chrome/browser/about_flags.h" | 12 #include "chrome/browser/about_flags.h" |
| 12 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
| 13 #include "chrome/browser/prefs/pref_service.h" | 14 #include "chrome/browser/prefs/pref_service.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chrome/browser/ui/browser_list.h" | 16 #include "chrome/browser/ui/browser_list.h" |
| 16 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 17 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 17 #include "chrome/common/jstemplate_builder.h" | 18 #include "chrome/common/jstemplate_builder.h" |
| 18 #include "chrome/common/pref_names.h" | 19 #include "chrome/common/pref_names.h" |
| 19 #include "chrome/common/url_constants.h" | 20 #include "chrome/common/url_constants.h" |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 // static | 220 // static |
| 220 RefCountedMemory* FlagsUI::GetFaviconResourceBytes() { | 221 RefCountedMemory* FlagsUI::GetFaviconResourceBytes() { |
| 221 return ResourceBundle::GetSharedInstance(). | 222 return ResourceBundle::GetSharedInstance(). |
| 222 LoadDataResourceBytes(IDR_FLAGS); | 223 LoadDataResourceBytes(IDR_FLAGS); |
| 223 } | 224 } |
| 224 | 225 |
| 225 // static | 226 // static |
| 226 void FlagsUI::RegisterPrefs(PrefService* prefs) { | 227 void FlagsUI::RegisterPrefs(PrefService* prefs) { |
| 227 prefs->RegisterListPref(prefs::kEnabledLabsExperiments); | 228 prefs->RegisterListPref(prefs::kEnabledLabsExperiments); |
| 228 } | 229 } |
| OLD | NEW |