2011-03-24 21:36:47 +01:00
|
|
|
// Copyright (c) 2011 The Chromium Embedded Framework 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 "webview_host.h"
|
|
|
|
|
2011-11-04 19:19:14 +01:00
|
|
|
WebViewHost::WebViewHost(BrowserWebViewDelegate* delegate)
|
|
|
|
: delegate_(delegate)
|
2011-03-24 21:36:47 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-08-14 23:54:18 +02:00
|
|
|
#if !defined(OS_MACOSX)
|
2011-03-24 21:36:47 +01:00
|
|
|
WebViewHost::~WebViewHost()
|
|
|
|
{
|
|
|
|
}
|
2011-08-14 23:54:18 +02:00
|
|
|
#endif
|