| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 AboutTcmallocOutputs::AboutTcmallocOutputs() {} | 201 AboutTcmallocOutputs::AboutTcmallocOutputs() {} |
| 203 | 202 |
| 204 AboutTcmallocOutputs::~AboutTcmallocOutputs() {} | 203 AboutTcmallocOutputs::~AboutTcmallocOutputs() {} |
| 205 | 204 |
| 206 // Glue between the callback task and the method in the singleton. | 205 // Glue between the callback task and the method in the singleton. |
| 207 void AboutTcmallocRendererCallback(base::ProcessId pid, | 206 void AboutTcmallocRendererCallback(base::ProcessId pid, |
| 208 const std::string& output) { | 207 const std::string& output) { |
| 209 AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); | 208 AboutTcmallocOutputs::GetInstance()->RendererCallback(pid, output); |
| 210 } | 209 } |
| 211 #endif | 210 #endif |
| OLD | NEW |