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

Side by Side Diff: chrome/browser/webui/plugins_ui.cc

Issue 6532045: WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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
« no previous file with comments | « chrome/browser/webui/plugins_ui.h ('k') | chrome/browser/webui/remoting_ui.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/dom_ui/plugins_ui.h" 5 #include "chrome/browser/webui/plugins_ui.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/message_loop.h" 11 #include "base/message_loop.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/singleton.h" 13 #include "base/singleton.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "base/values.h" 15 #include "base/values.h"
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 PathService::Get(chrome::DIR_INTERNAL_PLUGINS, &internal_dir); 365 PathService::Get(chrome::DIR_INTERNAL_PLUGINS, &internal_dir);
366 prefs->RegisterFilePathPref(prefs::kPluginsLastInternalDirectory, 366 prefs->RegisterFilePathPref(prefs::kPluginsLastInternalDirectory,
367 internal_dir); 367 internal_dir);
368 368
369 prefs->RegisterListPref(prefs::kPluginsPluginsBlacklist); 369 prefs->RegisterListPref(prefs::kPluginsPluginsBlacklist);
370 prefs->RegisterListPref(prefs::kPluginsPluginsList); 370 prefs->RegisterListPref(prefs::kPluginsPluginsList);
371 prefs->RegisterBooleanPref(prefs::kPluginsEnabledInternalPDF, false); 371 prefs->RegisterBooleanPref(prefs::kPluginsEnabledInternalPDF, false);
372 prefs->RegisterBooleanPref(prefs::kPluginsShowDetails, false); 372 prefs->RegisterBooleanPref(prefs::kPluginsShowDetails, false);
373 prefs->RegisterBooleanPref(prefs::kPluginsShowSetReaderDefaultInfobar, true); 373 prefs->RegisterBooleanPref(prefs::kPluginsShowSetReaderDefaultInfobar, true);
374 } 374 }
OLDNEW
« no previous file with comments | « chrome/browser/webui/plugins_ui.h ('k') | chrome/browser/webui/remoting_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698