diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-09-11 08:18:47 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-09-11 08:18:47 -0700 |
commit | df4de98c06075b0e491ac645f2d118a6813cedc9 (patch) | |
tree | 9b2f9b48477b061ade9534990384109587e23946 /fpdfsdk/include/javascript/Consts.h | |
parent | 89d8b4681ce98894a1ee1a6cf4bae77e00d28797 (diff) | |
download | pdfium-df4de98c06075b0e491ac645f2d118a6813cedc9.tar.xz |
Rename Init methods to more accurately describe purpose
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1335763002 .
Diffstat (limited to 'fpdfsdk/include/javascript/Consts.h')
-rw-r--r-- | fpdfsdk/include/javascript/Consts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/include/javascript/Consts.h b/fpdfsdk/include/javascript/Consts.h index 165001784b..778e2216f4 100644 --- a/fpdfsdk/include/javascript/Consts.h +++ b/fpdfsdk/include/javascript/Consts.h @@ -103,14 +103,14 @@ class CJS_Zoomtype : public CJS_Object { class CJS_GlobalConsts : public CJS_Object { public: - static int Init(v8::Isolate* pIsolate); + static int DefineJSObjects(v8::Isolate* pIsolate); }; /* ------------------------------ CJS_GlobalArrays -------------------------- */ class CJS_GlobalArrays : public CJS_Object { public: - static int Init(v8::Isolate* pIsolate); + static int DefineJSObjects(v8::Isolate* pIsolate); }; #endif // FPDFSDK_INCLUDE_JAVASCRIPT_CONSTS_H_ |