diff options
author | marja@chromium.org <marja@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-04 16:39:12 +0000 |
---|---|---|
committer | marja@chromium.org <marja@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-04 16:39:12 +0000 |
commit | 9a5984409f05752318c259fc1c69f0dba0107c07 (patch) | |
tree | 510d4649e82ef4d108036f81f0634837108308ff /chrome/renderer/extensions/set_icon_natives.h | |
parent | 4fc83f0a16d0c9853603a1c28859e892033e7caa (diff) | |
download | chromium_src-9a5984409f05752318c259fc1c69f0dba0107c07.zip chromium_src-9a5984409f05752318c259fc1c69f0dba0107c07.tar.gz chromium_src-9a5984409f05752318c259fc1c69f0dba0107c07.tar.bz2 |
Extensions: pass ChromeV8Context around instead of v8::Handle.
There was a TODO about this in object_backed_native_handler.h.
The passed handle was a Persistent behind the scenes, and we're going to disable
copying Persistents. We'd need to pass a Local handle instead, but this way the
TODO gets done with a similar amount of effort.
BUG=236290
Review URL: https://chromiumcodereview.appspot.com/16032015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/extensions/set_icon_natives.h')
-rw-r--r-- | chrome/renderer/extensions/set_icon_natives.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/chrome/renderer/extensions/set_icon_natives.h b/chrome/renderer/extensions/set_icon_natives.h index 7e0352a..6e3c6d1 100644 --- a/chrome/renderer/extensions/set_icon_natives.h +++ b/chrome/renderer/extensions/set_icon_natives.h @@ -33,8 +33,6 @@ class SetIconNatives : public ChromeV8Extension { RequestSender* request_sender_; - ChromeV8Context* context_; - DISALLOW_COPY_AND_ASSIGN(SetIconNatives); }; |