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

Unified Diff: webkit/port/bindings/v8/v8_custom.h

Issue 53092: Fix window.history GC issue. Since the history object is not part of... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | webkit/port/bindings/v8/v8_proxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/port/bindings/v8/v8_custom.h
===================================================================
--- webkit/port/bindings/v8/v8_custom.h (revision 12540)
+++ webkit/port/bindings/v8/v8_custom.h (working copy)
@@ -121,12 +121,14 @@
kDefaultWrapperInternalFieldCount + 1;
#endif
- static const int kDOMWindowLocationIndex =
+ static const int kDOMWindowHistoryIndex =
kDefaultWrapperInternalFieldCount + 0;
static const int kDOMWindowNavigatorIndex =
kDefaultWrapperInternalFieldCount + 1;
+ static const int kDOMWindowLocationIndex =
+ kDefaultWrapperInternalFieldCount + 2;
static const int kDOMWindowInternalFieldCount =
- kDefaultWrapperInternalFieldCount + 2;
+ kDefaultWrapperInternalFieldCount + 3;
static const int kStyleSheetOwnerNodeIndex =
kDefaultWrapperInternalFieldCount + 0;
« no previous file with comments | « no previous file | webkit/port/bindings/v8/v8_proxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698