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

Side by Side Diff: chrome/browser/extensions/extension.cc

Issue 63056: TBR: Revert "Implement chromium.self in content scripts..." (Closed)
Patch Set: Created 11 years, 8 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 (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/extensions/extension.h" 5 #include "chrome/browser/extensions/extension.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "net/base/net_util.h" 10 #include "net/base/net_util.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 id_(rhs.id_), 96 id_(rhs.id_),
97 version_(new Version(*rhs.version_)), 97 version_(new Version(*rhs.version_)),
98 name_(rhs.name_), 98 name_(rhs.name_),
99 description_(rhs.description_), 99 description_(rhs.description_),
100 content_scripts_(rhs.content_scripts_), 100 content_scripts_(rhs.content_scripts_),
101 plugins_dir_(rhs.plugins_dir_), 101 plugins_dir_(rhs.plugins_dir_),
102 zip_hash_(rhs.zip_hash_), 102 zip_hash_(rhs.zip_hash_),
103 theme_paths_(rhs.theme_paths_) { 103 theme_paths_(rhs.theme_paths_) {
104 } 104 }
105 105
106 const GURL& Extension::url() {
107 if (!extension_url_.is_valid())
108 extension_url_ = GURL(std::string(chrome::kExtensionScheme) +
109 chrome::kStandardSchemeSeparator + id_ + "/");
110
111 return extension_url_;
112 }
113
114 void Extension::set_id(const std::string& id) {
115 id_ = id;
116
117 // Reset url_ so that it gets reinitialized next time.
118 extension_url_ = GURL();
119 }
120
106 const std::string Extension::VersionString() const { 121 const std::string Extension::VersionString() const {
107 return version_->GetString(); 122 return version_->GetString();
108 } 123 }
109 124
110 // static 125 // static
111 GURL Extension::GetResourceURL(const GURL& extension_url, 126 GURL Extension::GetResourceURL(const GURL& extension_url,
112 const std::string& relative_path) { 127 const std::string& relative_path) {
113 DCHECK(extension_url.SchemeIs(chrome::kExtensionScheme)); 128 DCHECK(extension_url.SchemeIs(chrome::kExtensionScheme));
114 DCHECK(extension_url.path() == "/"); 129 DCHECK(extension_url.path() == "/");
115 130
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 // TODO(georged): Make GetResourceURL accept wstring too 328 // TODO(georged): Make GetResourceURL accept wstring too
314 GURL url = GetResourceURL(WideToUTF8(relative)); 329 GURL url = GetResourceURL(WideToUTF8(relative));
315 FilePath path = GetResourcePath(WideToUTF8(relative)); 330 FilePath path = GetResourcePath(WideToUTF8(relative));
316 result->css_scripts().push_back(UserScript::File(path, url)); 331 result->css_scripts().push_back(UserScript::File(path, url));
317 } 332 }
318 } 333 }
319 334
320 return true; 335 return true;
321 } 336 }
322 337
323 bool Extension::InitFromValue(const DictionaryValue& source, bool require_id, 338 bool Extension::InitFromValue(const DictionaryValue& source,
324 std::string* error) { 339 std::string* error) {
325 // Initialize id. 340 // Initialize id. The ID is not required here because we don't require IDs for
341 // extensions used with --load-extension.
326 if (source.HasKey(kIdKey)) { 342 if (source.HasKey(kIdKey)) {
327 if (!source.GetString(kIdKey, &id_)) { 343 if (!source.GetString(kIdKey, &id_)) {
328 *error = kInvalidIdError; 344 *error = kInvalidIdError;
329 return false; 345 return false;
330 } 346 }
331 347
332 // Normalize the string to lowercase, so it can be used as an URL component 348 // Normalize the string to lowercase, so it can be used as an URL component
333 // (where GURL will lowercase it). 349 // (where GURL will lowercase it).
334 StringToLowerASCII(&id_); 350 StringToLowerASCII(&id_);
335 351
336 // Verify that the id is legal. The id is a hex string of the SHA-1 hash of 352 // Verify that the id is legal. The id is a hex string of the SHA-1 hash of
337 // the public key. 353 // the public key.
338 std::vector<uint8> id_bytes; 354 std::vector<uint8> id_bytes;
339 if (!HexStringToBytes(id_, &id_bytes) || id_bytes.size() != kIdSize) { 355 if (!HexStringToBytes(id_, &id_bytes) || id_bytes.size() != kIdSize) {
340 *error = kInvalidIdError; 356 *error = kInvalidIdError;
341 return false; 357 return false;
342 } 358 }
343 } else if (require_id) {
344 *error = kInvalidIdError;
345 return false;
346 } else {
347 // Generate a random ID
348 static int counter = 0;
349 id_ = StringPrintf("%x", counter);
350 ++counter;
351
352 // pad the string out to 40 chars with zeroes.
353 id_.insert(0, 40 - id_.length(), '0');
354 } 359 }
355 360
356 // Initialize the URL.
357 extension_url_ = GURL(std::string(chrome::kExtensionScheme) +
358 chrome::kStandardSchemeSeparator + id_ + "/");
359
360 // Initialize version. 361 // Initialize version.
361 std::string version_str; 362 std::string version_str;
362 if (!source.GetString(kVersionKey, &version_str)) { 363 if (!source.GetString(kVersionKey, &version_str)) {
363 *error = kInvalidVersionError; 364 *error = kInvalidVersionError;
364 return false; 365 return false;
365 } 366 }
366 version_.reset(Version::GetVersionFromString(version_str)); 367 version_.reset(Version::GetVersionFromString(version_str));
367 if (!version_.get()) { 368 if (!version_.get()) {
368 *error = kInvalidVersionError; 369 *error = kInvalidVersionError;
369 return false; 370 return false;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 DictionaryValue* content_script; 450 DictionaryValue* content_script;
450 if (!list_value->GetDictionary(i, &content_script)) { 451 if (!list_value->GetDictionary(i, &content_script)) {
451 *error = FormatErrorMessage(kInvalidContentScriptError, 452 *error = FormatErrorMessage(kInvalidContentScriptError,
452 IntToString(i)); 453 IntToString(i));
453 return false; 454 return false;
454 } 455 }
455 456
456 UserScript script; 457 UserScript script;
457 if (!LoadUserScriptHelper(content_script, i, error, &script)) 458 if (!LoadUserScriptHelper(content_script, i, error, &script))
458 return false; // Failed to parse script context definition 459 return false; // Failed to parse script context definition
459 script.set_extension_id(id());
460 content_scripts_.push_back(script); 460 content_scripts_.push_back(script);
461 } 461 }
462 } 462 }
463 463
464 // Initialize the permissions (optional). 464 // Initialize the permissions (optional).
465 if (source.HasKey(kPermissionsKey)) { 465 if (source.HasKey(kPermissionsKey)) {
466 ListValue* hosts = NULL; 466 ListValue* hosts = NULL;
467 if (!source.GetList(kPermissionsKey, &hosts)) { 467 if (!source.GetList(kPermissionsKey, &hosts)) {
468 *error = FormatErrorMessage(kInvalidPermissionsError, ""); 468 *error = FormatErrorMessage(kInvalidPermissionsError, "");
469 return false; 469 return false;
(...skipping 26 matching lines...) Expand all
496 IntToString(i)); 496 IntToString(i));
497 return false; 497 return false;
498 } 498 }
499 499
500 permissions_.push_back(pattern); 500 permissions_.push_back(pattern);
501 } 501 }
502 } 502 }
503 503
504 return true; 504 return true;
505 } 505 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension.h ('k') | chrome/browser/extensions/extension_content_script_inject_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698