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

Unified Diff: src/d8.h

Issue 7860011: Rename SmartPointer to SmartArrayPointer. (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: rebase it again to get more fixes Created 9 years, 3 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 | « src/code-stubs.cc ('k') | src/d8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.h
diff --git a/src/d8.h b/src/d8.h
index c0ef670920e49c9533d6686fc3be2e9beb1fb4bb..052b7e09e39154855ab40beef3e71a2f8c878184 100644
--- a/src/d8.h
+++ b/src/d8.h
@@ -31,6 +31,7 @@
#ifndef V8_SHARED
#include "allocation.h"
#include "hashmap.h"
+#include "smart-array-pointer.h"
#include "v8.h"
#else
#include "../include/v8.h"
@@ -339,7 +340,7 @@ class LineEditor {
LineEditor(Type type, const char* name);
virtual ~LineEditor() { }
- virtual i::SmartPointer<char> Prompt(const char* prompt) = 0;
+ virtual i::SmartArrayPointer<char> Prompt(const char* prompt) = 0;
virtual bool Open() { return true; }
virtual bool Close() { return true; }
virtual void AddHistory(const char* str) { }
« no previous file with comments | « src/code-stubs.cc ('k') | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698