diff options
Diffstat (limited to 'extensions/common/user_script.h')
-rw-r--r-- | extensions/common/user_script.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/common/user_script.h b/extensions/common/user_script.h index 8bf16bf..40ad330 100644 --- a/extensions/common/user_script.h +++ b/extensions/common/user_script.h @@ -80,6 +80,7 @@ class UserScript { const base::FilePath& relative_path, const GURL& url); File(); + File(const File& other); ~File(); const base::FilePath& extension_root() const { return extension_root_; } @@ -133,6 +134,7 @@ class UserScript { // Constructor. Default the run location to document end, which is like // Greasemonkey and probably more useful for typical scripts. UserScript(); + UserScript(const UserScript& other); ~UserScript(); const std::string& name_space() const { return name_space_; } |