OLD | NEW |
---|---|
(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 #ifndef CHROME_TEST_DATA_WEBUI_EDIT_SEARCH_ENGINE_DIALOG_BROWSERTEST_H_ | |
5 #define CHROME_TEST_DATA_WEBUI_EDIT_SEARCH_ENGINE_DIALOG_BROWSERTEST_H_ | |
6 #pragma once | |
7 | |
8 #include "chrome/browser/ui/webui/web_ui_browsertest.h" | |
9 | |
10 // Test framework for the WebUI based edit search engine dialog. | |
11 class EditSearchEngineDialogUITest : public WebUIBrowserTest { | |
12 public: | |
13 EditSearchEngineDialogUITest(); | |
14 virtual ~EditSearchEngineDialogUITest(); | |
Sheridan Rawlins
2011/11/30 00:14:01
nit: Make these protected.
| |
15 | |
16 private: | |
17 // TODO(kevers): Factor this out into its own non-virtual method and call it | |
18 // with a testGenPreamble GEN line once the fix for | |
19 // chromium:104371 is committed. | |
20 virtual void SetUpOnMainThread() OVERRIDE; | |
21 }; | |
Sheridan Rawlins
2011/11/30 00:14:01
DISALLOW_COPY_AND_ASSIGN(EditSearchEngineDialogUIT
kevers
2011/11/30 15:54:54
Done.
| |
22 | |
23 #endif // CHROME_TEST_DATA_WEBUI_EDIT_SEARCH_ENGINE_DIALOG_BROWSERTEST_H_ | |
OLD | NEW |