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

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

Issue 7096016: Remove JS dialog dependency from content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: now a tc delegate Created 9 years, 6 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/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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698