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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScriptStreamerTest.cpp

Issue 2721533003: //third_party/WebKit/Source/bindings: include v8 as a user, not system, header (Closed)
Patch Set: . Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "bindings/core/v8/ScriptStreamer.h" 5 #include "bindings/core/v8/ScriptStreamer.h"
6 6
7 #include <memory>
8
7 #include "bindings/core/v8/ScriptSourceCode.h" 9 #include "bindings/core/v8/ScriptSourceCode.h"
8 #include "bindings/core/v8/ScriptStreamerThread.h" 10 #include "bindings/core/v8/ScriptStreamerThread.h"
9 #include "bindings/core/v8/V8Binding.h" 11 #include "bindings/core/v8/V8Binding.h"
10 #include "bindings/core/v8/V8BindingForTesting.h" 12 #include "bindings/core/v8/V8BindingForTesting.h"
11 #include "bindings/core/v8/V8ScriptRunner.h" 13 #include "bindings/core/v8/V8ScriptRunner.h"
12 #include "core/dom/Element.h" 14 #include "core/dom/Element.h"
13 #include "core/dom/PendingScript.h" 15 #include "core/dom/PendingScript.h"
14 #include "core/frame/Settings.h" 16 #include "core/frame/Settings.h"
15 #include "platform/heap/Handle.h" 17 #include "platform/heap/Handle.h"
16 #include "platform/testing/UnitTestHelpers.h" 18 #include "platform/testing/UnitTestHelpers.h"
17 #include "public/platform/Platform.h" 19 #include "public/platform/Platform.h"
18 #include "public/platform/WebScheduler.h" 20 #include "public/platform/WebScheduler.h"
19 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
20 #include <memory> 22 #include "v8/include/v8.h"
21 #include <v8.h>
22 23
23 namespace blink { 24 namespace blink {
24 25
25 namespace { 26 namespace {
26 27
27 class ScriptStreamingTest : public ::testing::Test { 28 class ScriptStreamingTest : public ::testing::Test {
28 public: 29 public:
29 ScriptStreamingTest() 30 ScriptStreamingTest()
30 : m_loadingTaskRunner(Platform::current() 31 : m_loadingTaskRunner(Platform::current()
31 ->currentThread() 32 ->currentThread()
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 v8::TryCatch tryCatch(scope.isolate()); 386 v8::TryCatch tryCatch(scope.isolate());
386 v8::Local<v8::Script> script; 387 v8::Local<v8::Script> script;
387 EXPECT_TRUE(V8ScriptRunner::compileScript(sourceCode, scope.isolate()) 388 EXPECT_TRUE(V8ScriptRunner::compileScript(sourceCode, scope.isolate())
388 .ToLocal(&script)); 389 .ToLocal(&script));
389 EXPECT_FALSE(tryCatch.HasCaught()); 390 EXPECT_FALSE(tryCatch.HasCaught());
390 } 391 }
391 392
392 } // namespace 393 } // namespace
393 394
394 } // namespace blink 395 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698