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

Unified Diff: chrome/browser/gtk/view_id_util_browsertest.cc

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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/browser/gtk/view_id_util.cc ('k') | chrome/browser/ui/gtk/about_chrome_dialog.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/view_id_util_browsertest.cc
===================================================================
--- chrome/browser/gtk/view_id_util_browsertest.cc (revision 71352)
+++ chrome/browser/gtk/view_id_util_browsertest.cc (working copy)
@@ -1,63 +0,0 @@
-// Copyright (c) 2010 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 <gtk/gtk.h>
-
-#include "chrome/browser/browser_window.h"
-#include "chrome/browser/gtk/view_id_util.h"
-#include "chrome/browser/ui/browser.h"
-#include "chrome/common/url_constants.h"
-#include "chrome/test/in_process_browser_test.h"
-
-class ViewIDTest : public InProcessBrowserTest {
- public:
- ViewIDTest() : root_window_(NULL) {}
-
- void CheckViewID(ViewID id, bool should_have) {
- if (!root_window_)
- root_window_ = GTK_WIDGET(browser()->window()->GetNativeHandle());
-
- ASSERT_TRUE(root_window_);
- EXPECT_EQ(should_have, !!ViewIDUtil::GetWidget(root_window_, id))
- << " Failed id=" << id;
- }
-
- private:
- GtkWidget* root_window_;
-};
-
-IN_PROC_BROWSER_TEST_F(ViewIDTest, Basic) {
- // Make sure FindBar is created to test
- // VIEW_ID_FIND_IN_PAGE_TEXT_FIELD and VIEW_ID_FIND_IN_PAGE.
- browser()->ShowFindBar();
-
- for (int i = VIEW_ID_TOOLBAR; i < VIEW_ID_PREDEFINED_COUNT; ++i) {
- // The following ids are used only in views implementation.
- if (i == VIEW_ID_CONTENTS_SPLIT ||
- i == VIEW_ID_INFO_BAR_CONTAINER ||
- i == VIEW_ID_DOWNLOAD_SHELF ||
- i == VIEW_ID_BOOKMARK_BAR_ELEMENT ||
- i == VIEW_ID_TAB ||
- i == VIEW_ID_SIDE_BAR_CONTAINER ||
- i == VIEW_ID_SIDE_BAR_SPLIT ||
- i == VIEW_ID_FEEDBACK_BUTTON) {
- continue;
- }
-
- CheckViewID(static_cast<ViewID>(i), true);
- }
-
- CheckViewID(VIEW_ID_PREDEFINED_COUNT, false);
-}
-
-IN_PROC_BROWSER_TEST_F(ViewIDTest, Delegate) {
- CheckViewID(VIEW_ID_TAB_0, true);
- CheckViewID(VIEW_ID_TAB_1, false);
-
- browser()->OpenURL(GURL(chrome::kAboutBlankURL), GURL(),
- NEW_BACKGROUND_TAB, PageTransition::TYPED);
-
- CheckViewID(VIEW_ID_TAB_0, true);
- CheckViewID(VIEW_ID_TAB_1, true);
-}
« no previous file with comments | « chrome/browser/gtk/view_id_util.cc ('k') | chrome/browser/ui/gtk/about_chrome_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698