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

Unified Diff: chrome/common/about_handler.cc

Issue 7064052: Revert 88142 to fix sync_integration_tests offline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/about_handler.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/about_handler.cc
===================================================================
--- chrome/common/about_handler.cc (revision 88158)
+++ chrome/common/about_handler.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -11,16 +11,18 @@
// This needs to match up with about_urls_handlers in
// chrome/renderer/about_handler.cc.
const char* const about_urls[] = {
- chrome::kChromeUICrashURL,
- chrome::kChromeUIKillURL,
- chrome::kChromeUIHangURL,
- chrome::kChromeUIShorthangURL,
+ chrome::kAboutCrashURL,
+ chrome::kAboutKillURL,
+ chrome::kAboutHangURL,
+ chrome::kAboutShorthangURL,
NULL,
};
const size_t about_urls_size = arraysize(about_urls);
+const char* const kAboutScheme = "about";
+
bool WillHandle(const GURL& url) {
- if (!url.SchemeIs(chrome::kChromeUIScheme))
+ if (url.scheme() != kAboutScheme)
return false;
const char* const* url_handler = about_urls;
« no previous file with comments | « chrome/common/about_handler.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698