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

Side by Side Diff: chrome/browser/ui/webui/ntp/most_visited_browsertest.cc

Issue 1151563005: Revert of NTP Zombie Code Slayer Part IV: Most Visited (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/files/file_path.h"
6 #include "chrome/common/url_constants.h"
7 #include "chrome/test/base/ui_test_utils.h"
8 #include "chrome/test/base/web_ui_browser_test.h"
9 #include "url/gurl.h"
10
11 class MostVisitedWebUITest : public WebUIBrowserTest {
12 public:
13 ~MostVisitedWebUITest() override {}
14
15 void SetUpInProcessBrowserTestFixture() override {
16 WebUIBrowserTest::SetUpInProcessBrowserTestFixture();
17 AddLibrary(base::FilePath(FILE_PATH_LITERAL("most_visited_page_test.js")));
18 }
19
20 void SetUpOnMainThread() override {
21 WebUIBrowserTest::SetUpOnMainThread();
22 ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL));
23 }
24 };
25
26 // TODO(samarth): delete along with the rest of the NTP4 code.
27 WEB_UI_UNITTEST_F(MostVisitedWebUITest, DISABLED_refreshDataBasic);
28 WEB_UI_UNITTEST_F(MostVisitedWebUITest, DISABLED_refreshDataOrdering);
29 WEB_UI_UNITTEST_F(MostVisitedWebUITest, DISABLED_refreshDataPinning);
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/app_launcher_page_ui.cc ('k') | chrome/browser/ui/webui/ntp/most_visited_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698