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

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

Issue 11415063: Adds about:user-actions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing OVERRIDE. Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('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 26 matching lines...) Expand all
37 chrome::kChromeUINetworkViewCacheHost, 37 chrome::kChromeUINetworkViewCacheHost,
38 chrome::kChromeUINewTabHost, 38 chrome::kChromeUINewTabHost,
39 chrome::kChromeUIOmniboxHost, 39 chrome::kChromeUIOmniboxHost,
40 chrome::kChromeUIPredictorsHost, 40 chrome::kChromeUIPredictorsHost,
41 chrome::kChromeUIProfilerHost, 41 chrome::kChromeUIProfilerHost,
42 chrome::kChromeUIQuotaInternalsHost, 42 chrome::kChromeUIQuotaInternalsHost,
43 chrome::kChromeUISignInInternalsHost, 43 chrome::kChromeUISignInInternalsHost,
44 chrome::kChromeUIStatsHost, 44 chrome::kChromeUIStatsHost,
45 chrome::kChromeUISyncInternalsHost, 45 chrome::kChromeUISyncInternalsHost,
46 chrome::kChromeUITermsHost, 46 chrome::kChromeUITermsHost,
47 chrome::kChromeUIUserActionsHost,
47 chrome::kChromeUIVersionHost, 48 chrome::kChromeUIVersionHost,
48 #if defined(OS_ANDROID) 49 #if defined(OS_ANDROID)
49 chrome::kChromeUIWelcomeHost, 50 chrome::kChromeUIWelcomeHost,
50 #else 51 #else
51 chrome::kChromeUIBookmarksHost, 52 chrome::kChromeUIBookmarksHost,
52 chrome::kChromeUIDownloadsHost, 53 chrome::kChromeUIDownloadsHost,
53 // TODO(dfalcantara): Enable after http://crbug.com/143146 is fixed. 54 // TODO(dfalcantara): Enable after http://crbug.com/143146 is fixed.
54 chrome::kChromeUIFlagsHost, 55 chrome::kChromeUIFlagsHost,
55 chrome::kChromeUIFlashHost, 56 chrome::kChromeUIFlashHost,
56 chrome::kChromeUIInspectHost, 57 chrome::kChromeUIInspectHost,
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 #endif // OFFICIAL_BUILD 177 #endif // OFFICIAL_BUILD
177 178
178 return false; 179 return false;
179 } 180 }
180 181
181 std::vector<std::string> ChromePaths() { 182 std::vector<std::string> ChromePaths() {
182 std::vector<std::string> paths(kPaths, kPaths + arraysize(kPaths)); 183 std::vector<std::string> paths(kPaths, kPaths + arraysize(kPaths));
183 std::sort(paths.begin(), paths.end()); 184 std::sort(paths.begin(), paths.end());
184 return paths; 185 return paths;
185 } 186 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698