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

Unified Diff: fxjs/include/cfxjse_class.h

Issue 2136213002: Rename fxjse/ to fxjs/ update files to match class names. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Add todo Created 4 years, 5 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 | « fxjs/include/cfxjse_arguments.h ('k') | fxjs/include/cfxjse_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fxjs/include/cfxjse_class.h
diff --git a/fxjse/include/cfxjse_class.h b/fxjs/include/cfxjse_class.h
similarity index 87%
rename from fxjse/include/cfxjse_class.h
rename to fxjs/include/cfxjse_class.h
index b4953d21d318417daf3686edf90aefc9816827ba..13eb1adb7d4d5476807c805bbec241078ca2a73b 100644
--- a/fxjse/include/cfxjse_class.h
+++ b/fxjs/include/cfxjse_class.h
@@ -4,11 +4,11 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef FXJSE_INCLUDE_CFXJSE_CLASS_H_
-#define FXJSE_INCLUDE_CFXJSE_CLASS_H_
+#ifndef FXJS_INCLUDE_CFXJSE_CLASS_H_
+#define FXJS_INCLUDE_CFXJSE_CLASS_H_
-#include "fxjse/include/cfxjse_arguments.h"
-#include "fxjse/include/fxjse.h"
+#include "fxjs/include/cfxjse_arguments.h"
+#include "fxjs/include/fxjse.h"
#include "v8/include/v8.h"
class CFXJSE_Context;
@@ -16,8 +16,6 @@ class CFXJSE_Value;
class CFXJSE_Class {
public:
- ~CFXJSE_Class();
-
static CFXJSE_Class* Create(CFXJSE_Context* pContext,
const FXJSE_CLASS_DESCRIPTOR* lpClassDefintion,
FX_BOOL bIsJSGlobal = FALSE);
@@ -28,6 +26,8 @@ class CFXJSE_Class {
v8::Local<v8::ObjectTemplate>& hObjectTemplate,
const FXJSE_CLASS_DESCRIPTOR* lpClassDefinition);
+ ~CFXJSE_Class();
+
CFXJSE_Context* GetContext() { return m_pContext; }
v8::Global<v8::FunctionTemplate>& GetTemplate() { return m_hTemplate; }
@@ -42,4 +42,4 @@ class CFXJSE_Class {
friend class CFXJSE_Value;
};
-#endif // FXJSE_INCLUDE_CFXJSE_CLASS_H_
+#endif // FXJS_INCLUDE_CFXJSE_CLASS_H_
« no previous file with comments | « fxjs/include/cfxjse_arguments.h ('k') | fxjs/include/cfxjse_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698