| 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 <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 chrome::kChromeUIDriveInternalsHost, | 72 chrome::kChromeUIDriveInternalsHost, |
| 73 chrome::kChromeUIImageBurnerHost, | 73 chrome::kChromeUIImageBurnerHost, |
| 74 chrome::kChromeUIKeyboardOverlayHost, | 74 chrome::kChromeUIKeyboardOverlayHost, |
| 75 chrome::kChromeUILoginHost, | 75 chrome::kChromeUILoginHost, |
| 76 chrome::kChromeUINetworkHost, | 76 chrome::kChromeUINetworkHost, |
| 77 chrome::kChromeUIOobeHost, | 77 chrome::kChromeUIOobeHost, |
| 78 chrome::kChromeUIOSCreditsHost, | 78 chrome::kChromeUIOSCreditsHost, |
| 79 chrome::kChromeUIProxySettingsHost, | 79 chrome::kChromeUIProxySettingsHost, |
| 80 chrome::kChromeUISystemInfoHost, | 80 chrome::kChromeUISystemInfoHost, |
| 81 chrome::kChromeUITaskManagerHost, | 81 chrome::kChromeUITaskManagerHost, |
| 82 chrome::kChromeUIWallpaperHost, | |
| 83 #endif | 82 #endif |
| 84 #if !defined(DISABLE_NACL) | 83 #if !defined(DISABLE_NACL) |
| 85 chrome::kChromeUINaClHost, | 84 chrome::kChromeUINaClHost, |
| 86 #endif | 85 #endif |
| 87 #if defined(ENABLE_CONFIGURATION_POLICY) | 86 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 88 chrome::kChromeUIPolicyHost, | 87 chrome::kChromeUIPolicyHost, |
| 89 #endif | 88 #endif |
| 90 #if defined(ENABLE_EXTENSIONS) | 89 #if defined(ENABLE_EXTENSIONS) |
| 91 chrome::kChromeUIExtensionsHost, | 90 chrome::kChromeUIExtensionsHost, |
| 92 #endif | 91 #endif |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 #endif // OFFICIAL_BUILD | 174 #endif // OFFICIAL_BUILD |
| 176 | 175 |
| 177 return false; | 176 return false; |
| 178 } | 177 } |
| 179 | 178 |
| 180 std::vector<std::string> ChromePaths() { | 179 std::vector<std::string> ChromePaths() { |
| 181 std::vector<std::string> paths(kPaths, kPaths + arraysize(kPaths)); | 180 std::vector<std::string> paths(kPaths, kPaths + arraysize(kPaths)); |
| 182 std::sort(paths.begin(), paths.end()); | 181 std::sort(paths.begin(), paths.end()); |
| 183 return paths; | 182 return paths; |
| 184 } | 183 } |
| OLD | NEW |