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

Unified Diff: chrome_frame/test/external_sites_test.cc

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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 | « chrome_frame/test/exception_barrier_unittest.cc ('k') | chrome_frame/test/header_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/external_sites_test.cc
diff --git a/chrome_frame/test/external_sites_test.cc b/chrome_frame/test/external_sites_test.cc
deleted file mode 100644
index d92d52ea5f475f3b3f5686eb80dab082df04ecf9..0000000000000000000000000000000000000000
--- a/chrome_frame/test/external_sites_test.cc
+++ /dev/null
@@ -1,49 +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.
-
-#include <string>
-
-#include "chrome_frame/test/chrome_frame_test_utils.h"
-#include "chrome_frame/test/mock_ie_event_sink_actions.h"
-#include "chrome_frame/test/mock_ie_event_sink_test.h"
-
-using testing::_;
-using testing::StrEq;
-
-namespace chrome_frame_test {
-
-// Test fixture for compatibility/reliability tests.
-class ChromeFrameSitesTest
- : public MockIEEventSinkTest,
- public testing::TestWithParam<std::wstring> {
- public:
- ChromeFrameSitesTest() {}
-
- virtual void SetUp() {
- // Permit navigation in both IE and CF.
- ie_mock_.ExpectAnyNavigations();
- }
-};
-
-INSTANTIATE_TEST_CASE_P(CF, ChromeFrameSitesTest,
- testing::Values(L"http://www.meebo.com/",
- L"http://www.vimeo.com/",
- L"http://wordpress.com/",
- L"https://github.com/"));
-
-// Test for navigating to a site that has a CF metatag.
-TEST_P(ChromeFrameSitesTest, LoadSite) {
- // Print name of site for debugging purposes.
- std::wcout << L"Navigating to site: " << GetParam() << std::endl;
-
- // Verify navigation to the url passed in as parameter.
- EXPECT_CALL(ie_mock_, OnLoad(IN_CF, StrEq(GetParam())))
- .WillOnce(testing::DoAll(
- VerifyAddressBarUrl(&ie_mock_),
- CloseBrowserMock(&ie_mock_)));
-
- LaunchIENavigateAndLoop(GetParam(), kChromeFrameLongNavigationTimeout * 2);
-}
-
-} // namespace chrome_frame_test
« no previous file with comments | « chrome_frame/test/exception_barrier_unittest.cc ('k') | chrome_frame/test/header_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698