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

Unified Diff: Source/bindings/core/v8/V8ValueCache.h

Issue 1110433002: Make Isolate as the first argument. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix Compile error 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 | « Source/bindings/core/v8/V8NPObject.cpp ('k') | Source/bindings/core/v8/WindowProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8ValueCache.h
diff --git a/Source/bindings/core/v8/V8ValueCache.h b/Source/bindings/core/v8/V8ValueCache.h
index 5b5ccfc9c7f72131d15be79ecf2aa3ca3e5ec5a6..ce0d1a14870ff6212909caef51f62210711afebe 100644
--- a/Source/bindings/core/v8/V8ValueCache.h
+++ b/Source/bindings/core/v8/V8ValueCache.h
@@ -67,7 +67,7 @@ public:
StringCache(v8::Isolate* isolate) : m_stringCache(isolate) { }
~StringCache();
- v8::Local<v8::String> v8ExternalString(StringImpl* stringImpl, v8::Isolate* isolate)
+ v8::Local<v8::String> v8ExternalString(v8::Isolate* isolate, StringImpl* stringImpl)
{
ASSERT(stringImpl);
if (m_lastStringImpl.get() == stringImpl)
« no previous file with comments | « Source/bindings/core/v8/V8NPObject.cpp ('k') | Source/bindings/core/v8/WindowProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698