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

Unified Diff: Source/web/FrameLoaderClientImpl.h

Issue 1112813002: Make use of v8::Local alias in Source/web* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/FrameLoaderClientImpl.h
diff --git a/Source/web/FrameLoaderClientImpl.h b/Source/web/FrameLoaderClientImpl.h
index 43b9e204a610eb6daa6cec715462cb80487c3eea..ea1cf074a0ec030aca0f9c735b08e57e29e177a9 100644
--- a/Source/web/FrameLoaderClientImpl.h
+++ b/Source/web/FrameLoaderClientImpl.h
@@ -59,8 +59,8 @@ public:
virtual void dispatchDidClearWindowObjectInMainWorld() override;
virtual void documentElementAvailable() override;
- virtual void didCreateScriptContext(v8::Handle<v8::Context>, int extensionGroup, int worldId) override;
- virtual void willReleaseScriptContext(v8::Handle<v8::Context>, int worldId) override;
+ virtual void didCreateScriptContext(v8::Local<v8::Context>, int extensionGroup, int worldId) override;
+ virtual void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override;
// Returns true if we should allow the given V8 extension to be added to
// the script context at the currently loading page and given extension group.
« no previous file with comments | « no previous file | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698