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

Side by Side Diff: content/public/common/url_utils.cc

Issue 105723002: Add the scheme chrome-distiller:// and hook up data source. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implement as data source instead. Also rebased across thousands of CLs. Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/public/common/url_utils.h" 5 #include "content/public/common/url_utils.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
11 #include "content/common/savable_url_schemes.h" 11 #include "content/common/savable_url_schemes.h"
12 #include "content/public/common/content_switches.h" 12 #include "content/public/common/content_switches.h"
13 #include "content/public/common/url_constants.h" 13 #include "content/public/common/url_constants.h"
14 #include "url/gurl.h" 14 #include "url/gurl.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 static size_t g_max_url_size = 2 * 1024 * 1024; 18 static size_t g_max_url_size = 2 * 1024 * 1024;
19 19
20 const char* const* GetSavableSchemes() { 20 const char* const* GetSavableSchemes() {
21 return GetSavableSchemesInternal(); 21 return GetSavableSchemesInternal();
22 } 22 }
23 23
24 bool HasWebUIScheme(const GURL& url) { 24 bool HasWebUIScheme(const GURL& url) {
25 return 25 return
26 #if !defined(OS_IOS) 26 #if !defined(OS_IOS)
27 url.SchemeIs(chrome::kChromeDevToolsScheme) || 27 url.SchemeIs(chrome::kChromeDevToolsScheme) ||
28 url.SchemeIs(chrome::kDomDistillerScheme) ||
28 #endif 29 #endif
29 url.SchemeIs(chrome::kChromeUIScheme); 30 url.SchemeIs(chrome::kChromeUIScheme);
30 } 31 }
31 32
32 bool IsSavableURL(const GURL& url) { 33 bool IsSavableURL(const GURL& url) {
33 for (int i = 0; GetSavableSchemes()[i] != NULL; ++i) { 34 for (int i = 0; GetSavableSchemes()[i] != NULL; ++i) {
34 if (url.SchemeIs(GetSavableSchemes()[i])) 35 if (url.SchemeIs(GetSavableSchemes()[i]))
35 return true; 36 return true;
36 } 37 }
37 return false; 38 return false;
38 } 39 }
39 40
40 #if defined(OS_ANDROID) 41 #if defined(OS_ANDROID)
41 void SetMaxURLChars(size_t max_chars) { 42 void SetMaxURLChars(size_t max_chars) {
42 // Check that it is not used by a multiprocesses embedder 43 // Check that it is not used by a multiprocesses embedder
43 CommandLine* cmd = CommandLine::ForCurrentProcess(); 44 CommandLine* cmd = CommandLine::ForCurrentProcess();
44 CHECK(cmd->HasSwitch(switches::kSingleProcess)); 45 CHECK(cmd->HasSwitch(switches::kSingleProcess));
45 g_max_url_size = max_chars; 46 g_max_url_size = max_chars;
46 } 47 }
47 #endif 48 #endif
48 49
49 size_t GetMaxURLChars() { 50 size_t GetMaxURLChars() {
50 return g_max_url_size; 51 return g_max_url_size;
51 } 52 }
52 53
53 } // namespace content 54 } // namespace content
OLDNEW
« content/public/common/content_switches.h ('K') | « content/public/common/url_constants.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698