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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp

Issue 2680963002: Remove the unused HTMLParserThread (Closed)
Patch Set: Created 3 years, 10 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 | « third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp
deleted file mode 100644
index bf551ee0cb03cac7c911da680b920a68607b50c4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "core/html/parser/HTMLParserThread.h"
-
-#include "platform/RuntimeEnabledFeatures.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace blink {
-
-TEST(HTMLParserThreadTest, Init) {
- // The harness has not initialized the parser thread, due to
- // RuntimeEnabledFeatures gating.
- ASSERT_FALSE(HTMLParserThread::shared());
- HTMLParserThread::init();
- ASSERT_TRUE(HTMLParserThread::shared());
- HTMLParserThread::shutdown();
-}
-
-TEST(HTMLParserThreadTest, ShutdownStartup) {
- // The harness has not initialized the parser thread, due to
- // RuntimeEnabledFeatures gating.
- ASSERT_FALSE(HTMLParserThread::shared());
- HTMLParserThread::init();
- ASSERT_TRUE(HTMLParserThread::shared());
-
- HTMLParserThread::shutdown();
- ASSERT_FALSE(HTMLParserThread::shared());
- HTMLParserThread::init();
- ASSERT_TRUE(HTMLParserThread::shared());
-}
-
-} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698