blob: 202b2f4b371c84f4289b5d08fe51fd4e2cc4474d [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_H_
#define ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_H_
#include "content/public/browser/web_contents_view_delegate.h"
namespace content {
class WebContents;
} // namespace content
namespace android_webview {
class AwWebContentsViewDelegate : public content::WebContentsViewDelegate {
public:
explicit AwWebContentsViewDelegate(content::WebContents* web_contents);
AwWebContentsViewDelegate(const AwWebContentsViewDelegate&) = delete;
AwWebContentsViewDelegate& operator=(const AwWebContentsViewDelegate&) =
delete;
~AwWebContentsViewDelegate() override;
// content::WebContentsViewDelegate implementation.
content::WebDragDestDelegate* GetDragDestDelegate() override;
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_H_