1// Copyright (c) 2009 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_COCOA_FAST_RESIZE_VIEW_H_
6#define CHROME_BROWSER_UI_COCOA_FAST_RESIZE_VIEW_H_
7
8#import <Cocoa/Cocoa.h>
9
10// A Cocoa view originally created to support fast re-painting to white on
11// resize. This is done by CoreAnimation now, so this view remains only as the
12// first opaque ancestor of accelerated web contents views.
13@interface FastResizeView : NSView
14
15@end
16
17#endif  // CHROME_BROWSER_UI_COCOA_FAST_RESIZE_VIEW_H_
18