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

Unified Diff: chrome/browser/extensions/extension.cc

Issue 39206: NO CODE CHANGE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/download/save_package.cc ('k') | chrome/browser/external_tab_container.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension.cc
===================================================================
--- chrome/browser/extensions/extension.cc (revision 10992)
+++ chrome/browser/extensions/extension.cc (working copy)
@@ -73,17 +73,17 @@
const size_t Extension::kIdSize = 20; // SHA1 (160 bits) == 20 bytes
-Extension::Extension(const Extension& rhs) :
- path_(rhs.path_),
- extension_url_(rhs.extension_url_),
- id_(rhs.id_),
- version_(new Version(*rhs.version_)),
- name_(rhs.name_),
- description_(rhs.description_),
- content_scripts_(rhs.content_scripts_),
- plugins_dir_(rhs.plugins_dir_),
- zip_hash_(rhs.zip_hash_),
- theme_paths_(rhs.theme_paths_) {
+Extension::Extension(const Extension& rhs)
+ : path_(rhs.path_),
+ extension_url_(rhs.extension_url_),
+ id_(rhs.id_),
+ version_(new Version(*rhs.version_)),
+ name_(rhs.name_),
+ description_(rhs.description_),
+ content_scripts_(rhs.content_scripts_),
+ plugins_dir_(rhs.plugins_dir_),
+ zip_hash_(rhs.zip_hash_),
+ theme_paths_(rhs.theme_paths_) {
}
const std::string Extension::VersionString() const {
« no previous file with comments | « chrome/browser/download/save_package.cc ('k') | chrome/browser/external_tab_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698