mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 17:46:04 +01:00
b568f160d9
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@570 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
15 lines
374 B
C++
15 lines
374 B
C++
// 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 "libcef/webview_host.h"
|
|
|
|
WebViewHost::WebViewHost(BrowserWebViewDelegate* delegate)
|
|
: delegate_(delegate) {
|
|
}
|
|
|
|
#if !defined(OS_MACOSX)
|
|
WebViewHost::~WebViewHost() {
|
|
}
|
|
#endif
|