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

Side by Side Diff: chrome/browser/ui/webui/net_internals/net_internals_ui.cc

Issue 147923005: Split ExtensionSystem interface from ExtensionSystemImpl implementation, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re^3base Created 6 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
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/net_internals/net_internals_ui.h" 5 #include "chrome/browser/ui/webui/net_internals/net_internals_ui.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <list> 8 #include <list>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 16 matching lines...) Expand all
27 #include "base/strings/string_util.h" 27 #include "base/strings/string_util.h"
28 #include "base/strings/utf_string_conversions.h" 28 #include "base/strings/utf_string_conversions.h"
29 #include "base/threading/worker_pool.h" 29 #include "base/threading/worker_pool.h"
30 #include "base/values.h" 30 #include "base/values.h"
31 #include "chrome/browser/browser_process.h" 31 #include "chrome/browser/browser_process.h"
32 #include "chrome/browser/browsing_data/browsing_data_helper.h" 32 #include "chrome/browser/browsing_data/browsing_data_helper.h"
33 #include "chrome/browser/browsing_data/browsing_data_remover.h" 33 #include "chrome/browser/browsing_data/browsing_data_remover.h"
34 #include "chrome/browser/chrome_notification_types.h" 34 #include "chrome/browser/chrome_notification_types.h"
35 #include "chrome/browser/download/download_prefs.h" 35 #include "chrome/browser/download/download_prefs.h"
36 #include "chrome/browser/extensions/extension_service.h" 36 #include "chrome/browser/extensions/extension_service.h"
37 #include "chrome/browser/extensions/extension_system.h"
38 #include "chrome/browser/io_thread.h" 37 #include "chrome/browser/io_thread.h"
39 #include "chrome/browser/net/chrome_net_log.h" 38 #include "chrome/browser/net/chrome_net_log.h"
40 #include "chrome/browser/net/chrome_network_delegate.h" 39 #include "chrome/browser/net/chrome_network_delegate.h"
41 #include "chrome/browser/net/connection_tester.h" 40 #include "chrome/browser/net/connection_tester.h"
42 #include "chrome/browser/prerender/prerender_manager.h" 41 #include "chrome/browser/prerender/prerender_manager.h"
43 #include "chrome/browser/prerender/prerender_manager_factory.h" 42 #include "chrome/browser/prerender/prerender_manager_factory.h"
44 #include "chrome/browser/profiles/profile.h" 43 #include "chrome/browser/profiles/profile.h"
45 #include "chrome/browser/ui/webui/extensions/extension_basic_info.h" 44 #include "chrome/browser/ui/webui/extensions/extension_basic_info.h"
46 #include "chrome/common/cancelable_task_tracker.h" 45 #include "chrome/common/cancelable_task_tracker.h"
47 #include "chrome/common/chrome_paths.h" 46 #include "chrome/common/chrome_paths.h"
48 #include "chrome/common/chrome_version_info.h" 47 #include "chrome/common/chrome_version_info.h"
49 #include "chrome/common/logging_chrome.h" 48 #include "chrome/common/logging_chrome.h"
50 #include "chrome/common/net/url_fixer_upper.h" 49 #include "chrome/common/net/url_fixer_upper.h"
51 #include "chrome/common/pref_names.h" 50 #include "chrome/common/pref_names.h"
52 #include "chrome/common/url_constants.h" 51 #include "chrome/common/url_constants.h"
53 #include "components/onc/onc_constants.h" 52 #include "components/onc/onc_constants.h"
54 #include "content/public/browser/browser_thread.h" 53 #include "content/public/browser/browser_thread.h"
55 #include "content/public/browser/notification_details.h" 54 #include "content/public/browser/notification_details.h"
56 #include "content/public/browser/resource_dispatcher_host.h" 55 #include "content/public/browser/resource_dispatcher_host.h"
57 #include "content/public/browser/web_contents.h" 56 #include "content/public/browser/web_contents.h"
58 #include "content/public/browser/web_ui.h" 57 #include "content/public/browser/web_ui.h"
59 #include "content/public/browser/web_ui_data_source.h" 58 #include "content/public/browser/web_ui_data_source.h"
60 #include "content/public/browser/web_ui_message_handler.h" 59 #include "content/public/browser/web_ui_message_handler.h"
60 #include "extensions/browser/extension_system.h"
61 #include "extensions/common/extension_set.h" 61 #include "extensions/common/extension_set.h"
62 #include "grit/generated_resources.h" 62 #include "grit/generated_resources.h"
63 #include "grit/net_internals_resources.h" 63 #include "grit/net_internals_resources.h"
64 #include "net/base/net_errors.h" 64 #include "net/base/net_errors.h"
65 #include "net/base/net_log_logger.h" 65 #include "net/base/net_log_logger.h"
66 #include "net/base/net_util.h" 66 #include "net/base/net_util.h"
67 #include "net/disk_cache/disk_cache.h" 67 #include "net/disk_cache/disk_cache.h"
68 #include "net/dns/host_cache.h" 68 #include "net/dns/host_cache.h"
69 #include "net/dns/host_resolver.h" 69 #include "net/dns/host_resolver.h"
70 #include "net/http/http_cache.h" 70 #include "net/http/http_cache.h"
(...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after
1849 } 1849 }
1850 1850
1851 NetInternalsUI::NetInternalsUI(content::WebUI* web_ui) 1851 NetInternalsUI::NetInternalsUI(content::WebUI* web_ui)
1852 : WebUIController(web_ui) { 1852 : WebUIController(web_ui) {
1853 web_ui->AddMessageHandler(new NetInternalsMessageHandler()); 1853 web_ui->AddMessageHandler(new NetInternalsMessageHandler());
1854 1854
1855 // Set up the chrome://net-internals/ source. 1855 // Set up the chrome://net-internals/ source.
1856 Profile* profile = Profile::FromWebUI(web_ui); 1856 Profile* profile = Profile::FromWebUI(web_ui);
1857 content::WebUIDataSource::Add(profile, CreateNetInternalsHTMLSource()); 1857 content::WebUIDataSource::Add(profile, CreateNetInternalsHTMLSource());
1858 } 1858 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/extensions/install_extension_handler.cc ('k') | chrome/browser/ui/webui/ntp/app_launcher_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698