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

Unified Diff: webkit/tools/test_shell/test_shell_test.h

Issue 15028002: Delete test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add dummy test_shell build target. Created 7 years, 7 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
Index: webkit/tools/test_shell/test_shell_test.h
diff --git a/webkit/tools/test_shell/test_shell_test.h b/webkit/tools/test_shell/test_shell_test.h
deleted file mode 100644
index b6c7f17c461e97850b0e5012355e6228ae77ae34..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/test_shell_test.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2012 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.
-
-/**
- * Base test class used by all test shell tests. Provides boiler plate
- * code to create and destroy a new test shell for each gTest test.
- */
-
-#ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_TEST_H__
-#define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_TEST_H__
-
-#include <string>
-
-#include "base/files/file_path.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "ui/base/window_open_disposition.h"
-#include "webkit/tools/test_shell/test_shell.h"
-
-class TestShellTest : public testing::Test {
- protected:
- // Returns the path "test_case_path/test_case".
- GURL GetTestURL(const base::FilePath& test_case_path,
- const std::string& test_case);
-
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
-
- // Don't refactor away; some unittests override this!
- virtual void CreateEmptyWindow();
-
- protected:
- // Location of SOURCE_ROOT/webkit/data/
- base::FilePath data_dir_;
-
- TestShell* test_shell_;
-};
-
-#endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_TEST_H__

Powered by Google App Engine
This is Rietveld 408576698