blob: 0c63c982e7eacc2b7b58802a7109eba9533e4fe2 [file] [log] [blame]
// Copyright 2015 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.
#ifndef WebContentSettingCallbacks_h
#define WebContentSettingCallbacks_h
#include "WebPrivatePtr.h"
#if INSIDE_BLINK
#include <memory>
#endif
namespace blink {
class ContentSettingCallbacks;
class WebContentSettingCallbacksPrivate;
class WebContentSettingCallbacks {
public:
~WebContentSettingCallbacks() { Reset(); }
WebContentSettingCallbacks() {}
WebContentSettingCallbacks(const WebContentSettingCallbacks& c) { Assign(c); }
WebContentSettingCallbacks& operator=(const WebContentSettingCallbacks& c) {
Assign(c);
return *this;
}
BLINK_PLATFORM_EXPORT void Reset();
BLINK_PLATFORM_EXPORT void Assign(const WebContentSettingCallbacks&);
#if INSIDE_BLINK
BLINK_PLATFORM_EXPORT WebContentSettingCallbacks(
std::unique_ptr<ContentSettingCallbacks>&&);
#endif
BLINK_PLATFORM_EXPORT void DoAllow();
BLINK_PLATFORM_EXPORT void DoDeny();
private:
WebPrivatePtr<WebContentSettingCallbacksPrivate> private_;
};
} // namespace blink
#endif