mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-13 01:56:20 +01:00
20 lines
603 B
C++
20 lines
603 B
C++
// Copyright 2014 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 "libcef/browser/extensions/extension_web_contents_observer.h"
|
|
|
|
DEFINE_WEB_CONTENTS_USER_DATA_KEY(extensions::CefExtensionWebContentsObserver);
|
|
|
|
namespace extensions {
|
|
|
|
CefExtensionWebContentsObserver::CefExtensionWebContentsObserver(
|
|
content::WebContents* web_contents)
|
|
: ExtensionWebContentsObserver(web_contents) {
|
|
}
|
|
|
|
CefExtensionWebContentsObserver::~CefExtensionWebContentsObserver() {
|
|
}
|
|
|
|
} // namespace extensions
|