summaryrefslogtreecommitdiffstats
path: root/ui/web_dialogs/test/test_web_contents_handler.cc
blob: 7f8e5e5416d01f4c22db1a4e5470cfaef4bcc681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) 2012 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.

#include "ui/web_dialogs/test/test_web_contents_handler.h"

namespace ui {
namespace test {

TestWebContentsHandler::TestWebContentsHandler() {
}

TestWebContentsHandler::~TestWebContentsHandler() {
}

content::WebContents* TestWebContentsHandler::OpenURLFromTab(
      content::BrowserContext* context,
      content::WebContents* source,
      const content::OpenURLParams& params) {
  return NULL;
}

void TestWebContentsHandler::AddNewContents(content::BrowserContext* context,
                                            content::WebContents* source,
                                            content::WebContents* new_contents,
                                            WindowOpenDisposition disposition,
                                            const gfx::Rect& initial_rect,
                                            bool user_gesture) {
}

}  // namespace test
}  // namespace ui