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

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

Issue 10578026: Remove message_loop_helpers.h and update the includes to point to the new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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) 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>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/base64.h" 13 #include "base/base64.h"
14 #include "base/bind.h" 14 #include "base/bind.h"
15 #include "base/bind_helpers.h" 15 #include "base/bind_helpers.h"
16 #include "base/command_line.h" 16 #include "base/command_line.h"
17 #include "base/file_path.h" 17 #include "base/file_path.h"
18 #include "base/file_util.h" 18 #include "base/file_util.h"
19 #include "base/memory/singleton.h" 19 #include "base/memory/singleton.h"
20 #include "base/memory/weak_ptr.h" 20 #include "base/memory/weak_ptr.h"
21 #include "base/message_loop.h" 21 #include "base/message_loop.h"
22 #include "base/message_loop_helpers.h"
23 #include "base/path_service.h" 22 #include "base/path_service.h"
24 #include "base/platform_file.h" 23 #include "base/platform_file.h"
24 #include "base/sequenced_task_runner_helpers.h"
25 #include "base/string_number_conversions.h" 25 #include "base/string_number_conversions.h"
26 #include "base/string_piece.h" 26 #include "base/string_piece.h"
27 #include "base/string_split.h" 27 #include "base/string_split.h"
28 #include "base/string_util.h" 28 #include "base/string_util.h"
29 #include "base/threading/worker_pool.h" 29 #include "base/threading/worker_pool.h"
30 #include "base/utf_string_conversions.h" 30 #include "base/utf_string_conversions.h"
31 #include "base/values.h" 31 #include "base/values.h"
32 #include "chrome/browser/browser_process.h" 32 #include "chrome/browser/browser_process.h"
33 #include "chrome/browser/browsing_data_helper.h" 33 #include "chrome/browser/browsing_data_helper.h"
34 #include "chrome/browser/browsing_data_remover.h" 34 #include "chrome/browser/browsing_data_remover.h"
(...skipping 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 } 1727 }
1728 1728
1729 NetInternalsUI::NetInternalsUI(content::WebUI* web_ui) 1729 NetInternalsUI::NetInternalsUI(content::WebUI* web_ui)
1730 : WebUIController(web_ui) { 1730 : WebUIController(web_ui) {
1731 web_ui->AddMessageHandler(new NetInternalsMessageHandler()); 1731 web_ui->AddMessageHandler(new NetInternalsMessageHandler());
1732 1732
1733 // Set up the chrome://net-internals/ source. 1733 // Set up the chrome://net-internals/ source.
1734 Profile* profile = Profile::FromWebUI(web_ui); 1734 Profile* profile = Profile::FromWebUI(web_ui);
1735 ChromeURLDataManager::AddDataSource(profile, CreateNetInternalsHTMLSource()); 1735 ChromeURLDataManager::AddDataSource(profile, CreateNetInternalsHTMLSource());
1736 } 1736 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/media/media_internals_proxy.h ('k') | chrome/browser/user_style_sheet_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698