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

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

Issue 5606002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_signin.cc ('k') | chrome/browser/browsing_data_appcache_helper.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_url_handler.h" 5 #include "chrome/browser/browser_url_handler.h"
6 6
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "chrome/browser/browser_about_handler.h" 8 #include "chrome/browser/browser_about_handler.h"
9 #include "chrome/browser/dom_ui/dom_ui_factory.h" 9 #include "chrome/browser/dom_ui/dom_ui_factory.h"
10 #include "chrome/browser/extensions/extension_dom_ui.h" 10 #include "chrome/browser/extensions/extension_dom_ui.h"
11 #include "chrome/browser/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/common/url_constants.h" 12 #include "chrome/common/url_constants.h"
13 #include "googleurl/src/gurl.h" 13 #include "googleurl/src/gurl.h"
14 14
15 // Handles rewriting view-source URLs for what we'll actually load. 15 // Handles rewriting view-source URLs for what we'll actually load.
16 static bool HandleViewSource(GURL* url, Profile* profile) { 16 static bool HandleViewSource(GURL* url, Profile* profile) {
17 if (url->SchemeIs(chrome::kViewSourceScheme)) { 17 if (url->SchemeIs(chrome::kViewSourceScheme)) {
18 // Load the inner URL instead. 18 // Load the inner URL instead.
19 *url = GURL(url->path()); 19 *url = GURL(url->path());
20 20
21 // Bug 26129: limit view-source to view the content and not any 21 // Bug 26129: limit view-source to view the content and not any
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 GURL test_url(original); 114 GURL test_url(original);
115 if ((*url_handlers_[i].first)(&test_url, profile)) { 115 if ((*url_handlers_[i].first)(&test_url, profile)) {
116 if (url_handlers_[i].second) 116 if (url_handlers_[i].second)
117 return (*url_handlers_[i].second)(url, profile); 117 return (*url_handlers_[i].second)(url, profile);
118 else 118 else
119 return false; 119 return false;
120 } 120 }
121 } 121 }
122 return false; 122 return false;
123 } 123 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_signin.cc ('k') | chrome/browser/browsing_data_appcache_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698