diff options
Diffstat (limited to 'chrome/common/extensions/user_script.h')
-rw-r--r-- | chrome/common/extensions/user_script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/user_script.h b/chrome/common/extensions/user_script.h index e2b3a96..9fbbe89 100644 --- a/chrome/common/extensions/user_script.h +++ b/chrome/common/extensions/user_script.h @@ -70,7 +70,7 @@ class UserScript { void set_external_content(const base::StringPiece& content) { external_content_ = content; } - const void set_content(const base::StringPiece& content) { + void set_content(const base::StringPiece& content) { content_.assign(content.begin(), content.end()); } |