Update V8 to version 4.7.47.
[chromium-blink-merge.git] / ui / web_dialogs / test / test_web_contents_handler.h
blob50d7592ada147080641392a0f9996116be3533e9
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 UI_WEB_DIALOGS_TEST_TEST_WEB_CONTENTS_HANDLER_H_
6 #define UI_WEB_DIALOGS_TEST_TEST_WEB_CONTENTS_HANDLER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "ui/web_dialogs/web_dialog_web_contents_delegate.h"
12 namespace ui {
13 namespace test {
15 class TestWebContentsHandler
16 : public WebDialogWebContentsDelegate::WebContentsHandler {
17 public:
18 TestWebContentsHandler();
19 ~TestWebContentsHandler() override;
21 private:
22 // Overridden from WebDialogWebContentsDelegate::WebContentsHandler:
23 content::WebContents* OpenURLFromTab(
24 content::BrowserContext* context,
25 content::WebContents* source,
26 const content::OpenURLParams& params) override;
27 void AddNewContents(content::BrowserContext* context,
28 content::WebContents* source,
29 content::WebContents* new_contents,
30 WindowOpenDisposition disposition,
31 const gfx::Rect& initial_rect,
32 bool user_gesture) override;
34 DISALLOW_COPY_AND_ASSIGN(TestWebContentsHandler);
37 } // namespace test
38 } // namespace ui
40 #endif // UI_WEB_DIALOGS_TEST_TEST_WEB_CONTENTS_HANDLER_H_