| // Copyright 2017 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. |
| |
| #ifndef CHROME_BROWSER_UI_WEBUI_BOOKMARKS_BOOKMARKS_BROWSERTEST_H_ |
| #define CHROME_BROWSER_UI_WEBUI_BOOKMARKS_BOOKMARKS_BROWSERTEST_H_ |
| |
| #include "chrome/test/base/web_ui_browser_test.h" |
| |
| class BookmarksBrowserTest : public WebUIBrowserTest { |
| public: |
| BookmarksBrowserTest(); |
| |
| BookmarksBrowserTest(const BookmarksBrowserTest&) = delete; |
| BookmarksBrowserTest& operator=(const BookmarksBrowserTest&) = delete; |
| |
| ~BookmarksBrowserTest() override; |
| |
| void SetupExtensionAPITest(); |
| void SetupExtensionAPIEditDisabledTest(); |
| }; |
| |
| #endif // CHROME_BROWSER_UI_WEBUI_BOOKMARKS_BOOKMARKS_BROWSERTEST_H_ |