diff options
author | tsepez <tsepez@chromium.org> | 2016-06-01 13:35:28 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-01 13:35:28 -0700 |
commit | 8abd7a2bbfef51ca6dc8a3462c067e5d2c46200e (patch) | |
tree | be8c84b695efe5e653d881a6f3194df981e76edb /fpdfsdk/javascript/public_methods_embeddertest.cpp | |
parent | f6be145f54bf44810974e43e9554c756c9730bb6 (diff) | |
download | pdfium-8abd7a2bbfef51ca6dc8a3462c067e5d2c46200e.tar.xz |
Remove use of v8:Lockers
The entire code base is single-threaded, hence the lockers
ought not be required.
Review-Url: https://codereview.chromium.org/2026933002
Diffstat (limited to 'fpdfsdk/javascript/public_methods_embeddertest.cpp')
-rw-r--r-- | fpdfsdk/javascript/public_methods_embeddertest.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fpdfsdk/javascript/public_methods_embeddertest.cpp b/fpdfsdk/javascript/public_methods_embeddertest.cpp index 1fc967b890..80ec6492ee 100644 --- a/fpdfsdk/javascript/public_methods_embeddertest.cpp +++ b/fpdfsdk/javascript/public_methods_embeddertest.cpp @@ -21,9 +21,6 @@ class PublicMethodsEmbedderTest : public JSEmbedderTest {}; TEST_F(PublicMethodsEmbedderTest, MakeRegularDate) { v8::Isolate::Scope isolate_scope(isolate()); -#ifdef PDF_ENABLE_XFA - v8::Locker locker(isolate()); -#endif // PDF_ENABLE_XFA v8::HandleScope handle_scope(isolate()); v8::Context::Scope context_scope(GetV8Context()); bool bWrongFormat; @@ -104,9 +101,6 @@ TEST_F(PublicMethodsEmbedderTest, MakeRegularDate) { TEST_F(PublicMethodsEmbedderTest, MakeFormatDate) { v8::Isolate::Scope isolate_scope(isolate()); -#ifdef PDF_ENABLE_XFA - v8::Locker locker(isolate()); -#endif // PDF_ENABLE_XFA v8::HandleScope handle_scope(isolate()); v8::Context::Scope context_scope(GetV8Context()); CFX_WideString formatted_date; |