blob: 453b45a7ca8e49af6e00307ef2df469371e5c20d [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
namespace blink {
class InjectedScriptHostClient {
public:
virtual void muteWarningsAndDeprecations() { }
virtual void unmuteWarningsAndDeprecations() { }
virtual ~InjectedScriptHostClient() { }
};
} // namespace blink
#endif // InjectedScriptHostClient_h