// 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. #ifndef UI_AURA_ROOT_WINDOW_VIEW_MAC_H_ #define UI_AURA_ROOT_WINDOW_VIEW_MAC_H_ #pragma once #import #include "ui/gfx/compositor/compositor.h" // RootWindowView provides an NSView class that delegates drawing to a // ui::Compositor delegate, setting up the NSOpenGLContext as required. @interface RootWindowView : NSView { @private scoped_refptr compositor_; } -(void)setCompositor:(scoped_refptr)compositor; @end #endif // UI_AURA_ROOT_WINDOW_VIEW_MAC_H_