summaryrefslogtreecommitdiffstats
path: root/extensions/renderer/script_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/renderer/script_context.h')
-rw-r--r--extensions/renderer/script_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/renderer/script_context.h b/extensions/renderer/script_context.h
index d5f1ae1..26002ec 100644
--- a/extensions/renderer/script_context.h
+++ b/extensions/renderer/script_context.h
@@ -45,7 +45,7 @@ class ScriptContext : public RequestSender::Source {
bool is_valid() const { return !v8_context_.IsEmpty(); }
v8::Handle<v8::Context> v8_context() const {
- return v8_context_.NewHandle(v8::Isolate::GetCurrent());
+ return v8_context_.NewHandle(isolate());
}
const Extension* extension() const { return extension_.get(); }
@@ -66,7 +66,7 @@ class ScriptContext : public RequestSender::Source {
// Returns the ID of the extension associated with this context, or empty
// string if there is no such extension.
- std::string GetExtensionID() const;
+ const std::string& GetExtensionID() const;
// Returns the RenderView associated with this context. Can return NULL if the
// context is in the process of being destroyed.