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

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

Issue 10933044: Move chrome/browser/plugin_* to chrome/browser/plugins/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@remove_plugin_group
Patch Set: . Created 8 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/about_ui.h" 5 #include "chrome/browser/ui/webui/about_ui.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 19 matching lines...) Expand all
30 #include "base/threading/thread.h" 30 #include "base/threading/thread.h"
31 #include "base/utf_string_conversions.h" 31 #include "base/utf_string_conversions.h"
32 #include "base/values.h" 32 #include "base/values.h"
33 #include "chrome/browser/about_flags.h" 33 #include "chrome/browser/about_flags.h"
34 #include "chrome/browser/browser_about_handler.h" 34 #include "chrome/browser/browser_about_handler.h"
35 #include "chrome/browser/browser_process.h" 35 #include "chrome/browser/browser_process.h"
36 #include "chrome/browser/defaults.h" 36 #include "chrome/browser/defaults.h"
37 #include "chrome/browser/memory_details.h" 37 #include "chrome/browser/memory_details.h"
38 #include "chrome/browser/net/predictor.h" 38 #include "chrome/browser/net/predictor.h"
39 #include "chrome/browser/net/url_fixer_upper.h" 39 #include "chrome/browser/net/url_fixer_upper.h"
40 #include "chrome/browser/plugin_prefs.h" 40 #include "chrome/browser/plugins/plugin_prefs.h"
41 #include "chrome/browser/profiles/profile.h" 41 #include "chrome/browser/profiles/profile.h"
42 #include "chrome/browser/profiles/profile_manager.h" 42 #include "chrome/browser/profiles/profile_manager.h"
43 #include "chrome/browser/ui/browser_dialogs.h" 43 #include "chrome/browser/ui/browser_dialogs.h"
44 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" 44 #include "chrome/browser/ui/webui/chrome_url_data_manager.h"
45 #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h" 45 #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h"
46 #include "chrome/common/chrome_paths.h" 46 #include "chrome/common/chrome_paths.h"
47 #include "chrome/common/chrome_version_info.h" 47 #include "chrome/common/chrome_version_info.h"
48 #include "chrome/common/jstemplate_builder.h" 48 #include "chrome/common/jstemplate_builder.h"
49 #include "chrome/common/metrics/variations/variations_util.h" 49 #include "chrome/common/metrics/variations/variations_util.h"
50 #include "chrome/common/render_messages.h" 50 #include "chrome/common/render_messages.h"
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1469 #endif 1469 #endif
1470 1470
1471 web_ui->AddMessageHandler(new VersionDOMHandler()); 1471 web_ui->AddMessageHandler(new VersionDOMHandler());
1472 1472
1473 ChromeURLDataManager::DataSource* source = 1473 ChromeURLDataManager::DataSource* source =
1474 new AboutUIHTMLSource(name, profile); 1474 new AboutUIHTMLSource(name, profile);
1475 if (source) { 1475 if (source) {
1476 ChromeURLDataManager::AddDataSource(profile, source); 1476 ChromeURLDataManager::AddDataSource(profile, source);
1477 } 1477 }
1478 } 1478 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/tab_contents/tab_contents.cc ('k') | chrome/browser/ui/webui/extensions/pack_extension_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698