OLD | NEW |
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/browser_about_handler.h" | 5 #include "chrome/browser/browser_about_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 chrome::kChromeUIExtensionsHost, | 37 chrome::kChromeUIExtensionsHost, |
38 chrome::kChromeUIFlagsHost, | 38 chrome::kChromeUIFlagsHost, |
39 chrome::kChromeUIFlashHost, | 39 chrome::kChromeUIFlashHost, |
40 chrome::kChromeUIGpuInternalsHost, | 40 chrome::kChromeUIGpuInternalsHost, |
41 chrome::kChromeUIHistogramsHost, | 41 chrome::kChromeUIHistogramsHost, |
42 chrome::kChromeUIHistoryHost, | 42 chrome::kChromeUIHistoryHost, |
43 chrome::kChromeUIIPCHost, | 43 chrome::kChromeUIIPCHost, |
44 chrome::kChromeUIMediaInternalsHost, | 44 chrome::kChromeUIMediaInternalsHost, |
45 chrome::kChromeUIMemoryHost, | 45 chrome::kChromeUIMemoryHost, |
46 chrome::kChromeUINetInternalsHost, | 46 chrome::kChromeUINetInternalsHost, |
47 chrome::kChromeUINetworkActionPredictorHost, | |
48 chrome::kChromeUINetworkViewCacheHost, | 47 chrome::kChromeUINetworkViewCacheHost, |
49 chrome::kChromeUINewTabHost, | 48 chrome::kChromeUINewTabHost, |
50 chrome::kChromeUIOmniboxHost, | 49 chrome::kChromeUIOmniboxHost, |
51 chrome::kChromeUIPluginsHost, | 50 chrome::kChromeUIPluginsHost, |
52 chrome::kChromeUIPolicyHost, | 51 chrome::kChromeUIPolicyHost, |
| 52 chrome::kChromeUIPredictorsHost, |
53 chrome::kChromeUIPrintHost, | 53 chrome::kChromeUIPrintHost, |
54 chrome::kChromeUIProfilerHost, | 54 chrome::kChromeUIProfilerHost, |
55 chrome::kChromeUIQuotaInternalsHost, | 55 chrome::kChromeUIQuotaInternalsHost, |
56 chrome::kChromeUISessionsHost, | 56 chrome::kChromeUISessionsHost, |
57 chrome::kChromeUISettingsHost, | 57 chrome::kChromeUISettingsHost, |
58 chrome::kChromeUIStatsHost, | 58 chrome::kChromeUIStatsHost, |
59 chrome::kChromeUISyncInternalsHost, | 59 chrome::kChromeUISyncInternalsHost, |
60 chrome::kChromeUITaskManagerHost, | 60 chrome::kChromeUITaskManagerHost, |
61 chrome::kChromeUITCMallocHost, | 61 chrome::kChromeUITCMallocHost, |
62 chrome::kChromeUITermsHost, | 62 chrome::kChromeUITermsHost, |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 AboutTcmallocOutputs::AboutTcmallocOutputs() {} | 207 AboutTcmallocOutputs::AboutTcmallocOutputs() {} |
208 | 208 |
209 AboutTcmallocOutputs::~AboutTcmallocOutputs() {} | 209 AboutTcmallocOutputs::~AboutTcmallocOutputs() {} |
210 | 210 |
211 // Glue between the callback task and the method in the singleton. | 211 // Glue between the callback task and the method in the singleton. |
212 void AboutTcmallocRendererCallback(base::ProcessId pid, | 212 void AboutTcmallocRendererCallback(base::ProcessId pid, |
213 const std::string& output) { | 213 const std::string& output) { |
214 AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); | 214 AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); |
215 } | 215 } |
216 #endif | 216 #endif |
OLD | NEW |