blob: 0c339717a83cdf0f28206adf1932c7913b68bfc1 [file] [log] [blame]
// Copyright (c) 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 InjectedScriptHostClient_h
#define InjectedScriptHostClient_h
#include "wtf/FastAllocBase.h"
namespace blink {
class InjectedScriptHostClient {
WTF_MAKE_FAST_ALLOCATED(InjectedScriptHostClient);
public:
virtual void muteWarningsAndDeprecations() { }
virtual void unmuteWarningsAndDeprecations() { }
virtual ~InjectedScriptHostClient() { }
};
} // namespace blink
#endif // InjectedScriptHostClient_h