blob: c510ee44a8528d5d150947202acd5987e6666c52 [file] [log] [blame]
// Copyright 2018 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_WS_CLIENT_CHANGE_TRACKER_H_
#define SERVICES_WS_CLIENT_CHANGE_TRACKER_H_
#include <stdint.h>
#include <memory>
#include "base/component_export.h"
#include "base/macros.h"
namespace aura {
class Window;
}
namespace ws {
class ClientChange;
enum class ClientChangeType;
// Tracks the active change from the client. There is at most one change from a
// client at a time.
class COMPONENT_EXPORT(WINDOW_SERVICE) ClientChangeTracker {
public:
ClientChangeTracker();
~ClientChangeTracker();
bool IsProcessingChangeForWindow(aura::Window* window,
ClientChangeType type) const;
bool IsProcessingPropertyChangeForWindow(aura::Window* window,
const void* property_key) const;
private:
friend class ClientChange;
bool DoesCurrentChangeEqual(aura::Window* window,
ClientChangeType type,
const void* property_key) const;
// Owned by the caller that created the ClientChange. This is set in
// ClientChange's constructor and reset in the destructor.
ClientChange* current_change_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(ClientChangeTracker);
};
} // namespace ws
#endif // SERVICES_WS_CLIENT_CHANGE_TRACKER_H_