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

Unified Diff: fpdfsdk/javascript/JS_Value.h

Issue 2062313002: Make code compile with clang_use_chrome_plugin (part IV) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: small fix Created 4 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
Index: fpdfsdk/javascript/JS_Value.h
diff --git a/fpdfsdk/javascript/JS_Value.h b/fpdfsdk/javascript/JS_Value.h
index 8adec4b1d17231b3785225857ada516badd96579..958c5e070e107f615edd1eab7c81809b41e2c210 100644
--- a/fpdfsdk/javascript/JS_Value.h
+++ b/fpdfsdk/javascript/JS_Value.h
@@ -46,6 +46,7 @@ class CJS_Value {
CJS_Value(CJS_Runtime* pRuntime, CJS_Array& array);
~CJS_Value();
+ CJS_Value(const CJS_Value& other);
void SetNull();
void Attach(v8::Local<v8::Value> pValue, Type t);
@@ -137,6 +138,7 @@ class CJS_Array {
public:
CJS_Array(CJS_Runtime* pRuntime);
virtual ~CJS_Array();
+ CJS_Array(const CJS_Array& other);
void Attach(v8::Local<v8::Array> pArray);
void GetElement(unsigned index, CJS_Value& value);

Powered by Google App Engine
This is Rietveld 408576698