Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: chrome/browser/browser_about_handler.cc

Issue 11028121: Convert wallpaper picker to v2 app (Closed) Base URL: http://git.chromium.org/chromium/src.git@AppsV2
Patch Set: Update wallpaper picker to version .2 in manifest Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/wallpaper_manager_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/wallpaper_manager_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698