Disable TabDragController tests that fail with a real compositor.
[chromium-blink-merge.git] / chrome / browser / ui / webui / options / options_ui_browsertest.h
blobaed9a6bad384ff1c9e78fa4731a37a8f709a5469
1 // Copyright (c) 2012 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.
5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_
8 #include "base/basictypes.h"
9 #include "chrome/test/base/in_process_browser_test.h"
11 namespace options {
13 class OptionsUIBrowserTest : public InProcessBrowserTest {
14 public:
15 OptionsUIBrowserTest();
17 // Navigate to the settings tab and block until complete.
18 void NavigateToSettings();
20 // Check navbar's existence.
21 void VerifyNavbar();
23 // Verify that the page title is correct.
24 // The only guarantee we can make about the title of a settings tab is that
25 // it should contain IDS_SETTINGS_TITLE somewhere.
26 void VerifyTitle();
29 } // namespace options
31 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_BROWSERTEST_H_