2011-03-24 20:36:47 +00: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.
|
|
|
|
|
2012-01-09 23:46:23 +00:00
|
|
|
#include "libcef/webview_host.h"
|
2011-03-24 20:36:47 +00:00
|
|
|
|
2011-11-04 18:19:14 +00:00
|
|
|
WebViewHost::WebViewHost(BrowserWebViewDelegate* delegate)
|
2012-01-09 23:46:23 +00:00
|
|
|
: delegate_(delegate) {
|
2011-03-24 20:36:47 +00:00
|
|
|
}
|
|
|
|
|
2011-08-14 21:54:18 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2012-01-09 23:46:23 +00:00
|
|
|
WebViewHost::~WebViewHost() {
|
2011-03-24 20:36:47 +00:00
|
|
|
}
|
2011-08-14 21:54:18 +00:00
|
|
|
#endif
|