blob: ea45f55e2e4ef4cdb8d74817bf86b387600875e5 [file] [log] [blame]
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_SCOPED_NS_GRAPHICS_CONTEXT_SAVE_GSTATE_MAC_H_
#define UI_GFX_SCOPED_NS_GRAPHICS_CONTEXT_SAVE_GSTATE_MAC_H_
#include <memory>
#include "base/component_export.h"
namespace gfx {
// A class to save/restore the state of the current context.
class COMPONENT_EXPORT(GFX) ScopedNSGraphicsContextSaveGState {
public:
ScopedNSGraphicsContextSaveGState();
ScopedNSGraphicsContextSaveGState(const ScopedNSGraphicsContextSaveGState&) =
delete;
ScopedNSGraphicsContextSaveGState& operator=(
const ScopedNSGraphicsContextSaveGState&) = delete;
~ScopedNSGraphicsContextSaveGState();
private:
struct ObjCStorage;
std::unique_ptr<ObjCStorage> objc_storage_;
};
} // namespace gfx
#endif // UI_GFX_SCOPED_NS_GRAPHICS_CONTEXT_SAVE_GSTATE_MAC_H_