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"
15 class TestWebContentsHandler
16 : public WebDialogWebContentsDelegate::WebContentsHandler
{
18 TestWebContentsHandler();
19 ~TestWebContentsHandler() override
;
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
);
40 #endif // UI_WEB_DIALOGS_TEST_TEST_WEB_CONTENTS_HANDLER_H_