blob: 2f460c2b902da4215729db592106271cbb42f4af [file] [log] [blame]
// 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.
#ifndef SERVICES_JS_SYSTEM_HANDLE_CLOSE_OBSERVER_H_
#define SERVICES_JS_SYSTEM_HANDLE_CLOSE_OBSERVER_H_
namespace mojo {
namespace js {
class HandleCloseObserver {
public:
virtual void OnWillCloseHandle() = 0;
protected:
virtual ~HandleCloseObserver() {}
};
} // namespace js
} // namespace mojo
#endif // SERVICES_JS_SYSTEM_HANDLE_CLOSE_OBSERVER_H_