| 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 "content/browser/browser_url_handler_impl.h" | 5 #include "content/browser/browser_url_handler_impl.h" |
| 6 | 6 |
| 7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "content/browser/webui/web_ui_impl.h" | 8 #include "content/browser/webui/web_ui_impl.h" |
| 9 #include "content/public/browser/content_browser_client.h" | 9 #include "content/public/browser/content_browser_client.h" |
| 10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "url/gurl.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 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, | 16 static bool HandleViewSource(GURL* url, |
| 17 BrowserContext* browser_context) { | 17 BrowserContext* browser_context) { |
| 18 if (url->SchemeIs(kViewSourceScheme)) { | 18 if (url->SchemeIs(kViewSourceScheme)) { |
| 19 // Load the inner URL instead. | 19 // Load the inner URL instead. |
| 20 *url = GURL(url->path()); | 20 *url = GURL(url->path()); |
| 21 | 21 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 return true; | 126 return true; |
| 127 } else if (handler(&test_url, browser_context)) { | 127 } else if (handler(&test_url, browser_context)) { |
| 128 return reverse_rewriter(url, browser_context); | 128 return reverse_rewriter(url, browser_context); |
| 129 } | 129 } |
| 130 } | 130 } |
| 131 } | 131 } |
| 132 return false; | 132 return false; |
| 133 } | 133 } |
| 134 | 134 |
| 135 } // namespace content | 135 } // namespace content |
| OLD | NEW |