| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 chrome::kChromeUIDriveInternalsHost, | 74 chrome::kChromeUIDriveInternalsHost, |
| 75 chrome::kChromeUIImageBurnerHost, | 75 chrome::kChromeUIImageBurnerHost, |
| 76 chrome::kChromeUIKeyboardOverlayHost, | 76 chrome::kChromeUIKeyboardOverlayHost, |
| 77 chrome::kChromeUILoginHost, | 77 chrome::kChromeUILoginHost, |
| 78 chrome::kChromeUINetworkHost, | 78 chrome::kChromeUINetworkHost, |
| 79 chrome::kChromeUIOobeHost, | 79 chrome::kChromeUIOobeHost, |
| 80 chrome::kChromeUIOSCreditsHost, | 80 chrome::kChromeUIOSCreditsHost, |
| 81 chrome::kChromeUIProxySettingsHost, | 81 chrome::kChromeUIProxySettingsHost, |
| 82 chrome::kChromeUISystemInfoHost, | 82 chrome::kChromeUISystemInfoHost, |
| 83 chrome::kChromeUITaskManagerHost, | 83 chrome::kChromeUITaskManagerHost, |
| 84 chrome::kChromeUIWallpaperHost, | |
| 85 #endif | 84 #endif |
| 86 #if !defined(DISABLE_NACL) | 85 #if !defined(DISABLE_NACL) |
| 87 chrome::kChromeUINaClHost, | 86 chrome::kChromeUINaClHost, |
| 88 #endif | 87 #endif |
| 89 #if defined(ENABLE_CONFIGURATION_POLICY) | 88 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 90 chrome::kChromeUIPolicyHost, | 89 chrome::kChromeUIPolicyHost, |
| 91 #endif | 90 #endif |
| 92 #if defined(ENABLE_EXTENSIONS) | 91 #if defined(ENABLE_EXTENSIONS) |
| 93 chrome::kChromeUIExtensionsHost, | 92 chrome::kChromeUIExtensionsHost, |
| 94 #endif | 93 #endif |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 #endif // OFFICIAL_BUILD | 182 #endif // OFFICIAL_BUILD |
| 184 | 183 |
| 185 return false; | 184 return false; |
| 186 } | 185 } |
| 187 | 186 |
| 188 std::vector<std::string> ChromePaths() { | 187 std::vector<std::string> ChromePaths() { |
| 189 std::vector<std::string> paths(kPaths, kPaths + arraysize(kPaths)); | 188 std::vector<std::string> paths(kPaths, kPaths + arraysize(kPaths)); |
| 190 std::sort(paths.begin(), paths.end()); | 189 std::sort(paths.begin(), paths.end()); |
| 191 return paths; | 190 return paths; |
| 192 } | 191 } |
| OLD | NEW |