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

Side by Side Diff: extensions/common/user_script.cc

Issue 1233453011: Revert of Remove some legacy versions of StartsWith and EndsWith. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
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 "extensions/common/user_script.h" 5 #include "extensions/common/user_script.h"
6 6
7 #include "base/atomic_sequence_num.h" 7 #include "base/atomic_sequence_num.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/pickle.h" 9 #include "base/pickle.h"
10 #include "base/strings/pattern.h" 10 #include "base/strings/pattern.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 const char UserScript::kFileExtension[] = ".user.js"; 45 const char UserScript::kFileExtension[] = ".user.js";
46 46
47 47
48 // static 48 // static
49 int UserScript::GenerateUserScriptID() { 49 int UserScript::GenerateUserScriptID() {
50 return g_user_script_id_generator.GetNext(); 50 return g_user_script_id_generator.GetNext();
51 } 51 }
52 52
53 bool UserScript::IsURLUserScript(const GURL& url, 53 bool UserScript::IsURLUserScript(const GURL& url,
54 const std::string& mime_type) { 54 const std::string& mime_type) {
55 return base::EndsWith(url.ExtractFileName(), kFileExtension, 55 return base::EndsWith(url.ExtractFileName(), kFileExtension, false) &&
56 base::CompareCase::INSENSITIVE_ASCII) &&
57 mime_type != "text/html"; 56 mime_type != "text/html";
58 } 57 }
59 58
60 // static 59 // static
61 int UserScript::ValidUserScriptSchemes(bool canExecuteScriptEverywhere) { 60 int UserScript::ValidUserScriptSchemes(bool canExecuteScriptEverywhere) {
62 if (canExecuteScriptEverywhere) 61 if (canExecuteScriptEverywhere)
63 return URLPattern::SCHEME_ALL; 62 return URLPattern::SCHEME_ALL;
64 int valid_schemes = kValidUserScriptSchemes; 63 int valid_schemes = kValidUserScriptSchemes;
65 if (!base::CommandLine::ForCurrentProcess()->HasSwitch( 64 if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
66 switches::kExtensionsOnChromeURLs)) { 65 switches::kExtensionsOnChromeURLs)) {
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 } 281 }
283 282
284 bool operator<(const UserScript& script1, const UserScript& script2) { 283 bool operator<(const UserScript& script1, const UserScript& script2) {
285 // The only kind of script that should be compared is the kind that has its 284 // The only kind of script that should be compared is the kind that has its
286 // IDs initialized to a meaningful value. 285 // IDs initialized to a meaningful value.
287 DCHECK(script1.id() != -1 && script2.id() != -1); 286 DCHECK(script1.id() != -1 && script2.id() != -1);
288 return script1.id() < script2.id(); 287 return script1.id() < script2.id();
289 } 288 }
290 289
291 } // namespace extensions 290 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/web_request/web_request_permissions.cc ('k') | extensions/utility/unpacker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698