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

Unified Diff: include/v8.h

Issue 17076003: webkit build fix for 15142 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 9302f0f6082c7f897a63ee0443d2ce734e0daca5..f6e236114e33edca721fe3cb1a37fd216c5af0fb 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -490,10 +490,10 @@ template <class T> class Persistent // NOLINT
public:
#ifndef V8_USE_UNSAFE_HANDLES
V8_INLINE(Persistent()) : val_(0) { }
- V8_INLINE(~Persistent()) {
- // TODO(dcarney): add this back before cutover.
- // Dispose();
- }
+ // TODO(dcarney): add this back before cutover.
+// V8_INLINE(~Persistent()) {
+// Dispose();
+// }
V8_INLINE(bool IsEmpty() const) { return val_ == 0; }
// TODO(dcarney): remove somehow before cutover
// The handle should either be 0, or a pointer to a live cell.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698