This source file includes following definitions.
- OpenURLFromTab
- AddNewContents
#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_pos,
bool user_gesture) {
}
}
}