// Copyright (c) 2012 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. #include "ui/gfx/scoped_ui_graphics_push_context_ios.h" #import #include "base/logging.h" namespace gfx { ScopedUIGraphicsPushContext::ScopedUIGraphicsPushContext(CGContextRef context) : context_(context) { UIGraphicsPushContext(context_); } ScopedUIGraphicsPushContext::~ScopedUIGraphicsPushContext() { DCHECK_EQ(context_, UIGraphicsGetCurrentContext()); UIGraphicsPopContext(); } } // namespace gfx