Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/extension_urls.h" | 5 #include "extensions/common/extension_urls.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | |
| 7 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 9 #include "extensions/common/constants.h" | 10 #include "extensions/common/constants.h" |
| 11 #include "extensions/common/switches.h" | |
| 10 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 11 | 13 |
| 14 namespace { | |
| 15 | |
| 16 // The greatest common prefixes of the main extensions gallery's browse and | |
| 17 // download URLs. | |
| 18 const char kGalleryBrowsePrefix[] = "https://chrome.google.com/webstore"; | |
| 19 | |
| 20 } // namespace | |
| 21 | |
| 12 namespace extensions { | 22 namespace extensions { |
| 13 | 23 |
| 14 const char kEventBindings[] = "event_bindings"; | 24 const char kEventBindings[] = "event_bindings"; |
| 15 | 25 |
| 16 const char kSchemaUtils[] = "schemaUtils"; | 26 const char kSchemaUtils[] = "schemaUtils"; |
| 17 | 27 |
| 18 bool IsSourceFromAnExtension(const base::string16& source) { | 28 bool IsSourceFromAnExtension(const base::string16& source) { |
| 19 return GURL(source).SchemeIs(kExtensionScheme) || | 29 return GURL(source).SchemeIs(kExtensionScheme) || |
| 20 StartsWith(source, | 30 StartsWith(source, |
| 21 base::ASCIIToUTF16("extensions::"), | 31 base::ASCIIToUTF16("extensions::"), |
| 22 true /* case-sensitive */); | 32 true /* case-sensitive */); |
| 23 } | 33 } |
| 24 | 34 |
| 35 std::string GetWebstoreLaunchURL() { | |
| 36 std::string gallery_prefix = kGalleryBrowsePrefix; | |
| 37 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kAppsGalleryURL)) | |
| 38 gallery_prefix = CommandLine::ForCurrentProcess()->GetSwitchValueASCII( | |
| 39 switches::kAppsGalleryURL); | |
| 40 if (EndsWith(gallery_prefix, "/", true)) | |
| 41 gallery_prefix = gallery_prefix.substr(0, gallery_prefix.length() - 1); | |
| 42 return gallery_prefix; | |
|
miket_OOO
2013/11/07 21:39:41
I know this is just move-refactoring, but (a) is t
Yoyo Zhou
2013/11/08 02:03:09
For (a) and (b), I don't know. I spent some time s
| |
| 43 } | |
| 44 | |
| 45 std::string GetWebstoreItemDetailURLPrefix() { | |
| 46 return GetWebstoreLaunchURL() + "/detail/"; | |
| 47 } | |
| 48 | |
| 25 } // namespace extensions | 49 } // namespace extensions |
| OLD | NEW |