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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 chrome::kChromeUITracingHost, | 64 chrome::kChromeUITracingHost, |
65 chrome::kChromeUIVersionHost, | 65 chrome::kChromeUIVersionHost, |
66 #if defined(OS_WIN) | 66 #if defined(OS_WIN) |
67 chrome::kChromeUIConflictsHost, | 67 chrome::kChromeUIConflictsHost, |
68 #endif | 68 #endif |
69 #if defined(OS_LINUX) || defined(OS_OPENBSD) | 69 #if defined(OS_LINUX) || defined(OS_OPENBSD) |
70 chrome::kChromeUILinuxProxyConfigHost, | 70 chrome::kChromeUILinuxProxyConfigHost, |
71 chrome::kChromeUISandboxHost, | 71 chrome::kChromeUISandboxHost, |
72 #endif | 72 #endif |
73 #if defined(OS_CHROMEOS) | 73 #if defined(OS_CHROMEOS) |
74 chrome::kChromeUIActiveDownloadsHost, | |
75 chrome::kChromeUIChooseMobileNetworkHost, | 74 chrome::kChromeUIChooseMobileNetworkHost, |
76 chrome::kChromeUICryptohomeHost, | 75 chrome::kChromeUICryptohomeHost, |
77 chrome::kChromeUIDiscardsHost, | 76 chrome::kChromeUIDiscardsHost, |
78 chrome::kChromeUIImageBurnerHost, | 77 chrome::kChromeUIImageBurnerHost, |
79 chrome::kChromeUIKeyboardOverlayHost, | 78 chrome::kChromeUIKeyboardOverlayHost, |
80 chrome::kChromeUILoginHost, | 79 chrome::kChromeUILoginHost, |
81 chrome::kChromeUINetworkHost, | 80 chrome::kChromeUINetworkHost, |
82 chrome::kChromeUIOobeHost, | 81 chrome::kChromeUIOobeHost, |
83 chrome::kChromeUIOSCreditsHost, | 82 chrome::kChromeUIOSCreditsHost, |
84 chrome::kChromeUIProxySettingsHost, | 83 chrome::kChromeUIProxySettingsHost, |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 AboutTcmallocOutputs::AboutTcmallocOutputs() {} | 200 AboutTcmallocOutputs::AboutTcmallocOutputs() {} |
202 | 201 |
203 AboutTcmallocOutputs::~AboutTcmallocOutputs() {} | 202 AboutTcmallocOutputs::~AboutTcmallocOutputs() {} |
204 | 203 |
205 // Glue between the callback task and the method in the singleton. | 204 // Glue between the callback task and the method in the singleton. |
206 void AboutTcmallocRendererCallback(base::ProcessId pid, | 205 void AboutTcmallocRendererCallback(base::ProcessId pid, |
207 const std::string& output) { | 206 const std::string& output) { |
208 AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); | 207 AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); |
209 } | 208 } |
210 #endif | 209 #endif |
OLD | NEW |