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

Unified Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 7650027: Update Chromium to use new signature for (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
Index: chrome/renderer/chrome_content_renderer_client.h
diff --git a/chrome/renderer/chrome_content_renderer_client.h b/chrome/renderer/chrome_content_renderer_client.h
index e99d60ff89d10643527161a0fb8ae7535c816ec4..c77692bf2b84bb9b5e1fe112353af4de0556a430 100644
--- a/chrome/renderer/chrome_content_renderer_client.h
+++ b/chrome/renderer/chrome_content_renderer_client.h
@@ -28,6 +28,11 @@ class PluginGroup;
}
}
+namespace v8 {
jam 2011/08/15 22:04:56 not needed since content_renderer_client already d
+class Context;
+template<class T> class Handle;
+}
+
namespace chrome {
class ChromeContentRendererClient : public content::ContentRendererClient {
@@ -62,7 +67,9 @@ class ChromeContentRendererClient : public content::ContentRendererClient {
virtual bool ShouldPumpEventsDuringCookieMessage() OVERRIDE;
virtual void DidCreateScriptContext(WebKit::WebFrame* frame) OVERRIDE;
virtual void DidDestroyScriptContext(WebKit::WebFrame* frame) OVERRIDE;
- virtual void DidCreateIsolatedScriptContext(WebKit::WebFrame* frame) OVERRIDE;
+ virtual void DidCreateIsolatedScriptContext(
+ WebKit::WebFrame* frame, int world_id,
+ v8::Handle<v8::Context> context) OVERRIDE;
virtual unsigned long long VisitedLinkHash(const char* canonical_url,
size_t length) OVERRIDE;
virtual bool IsLinkVisited(unsigned long long link_hash) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698