| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_ACCELERATED_WINDOW_INTERFACE_H_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_ACCELERATED_WINDOW_INTERFACE_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 // Protocol implemented by windows that need to be informed explicitly about | |
| 10 // underlay surfaces. | |
| 11 @protocol UnderlayableSurface | |
| 12 - (void)underlaySurfaceAdded; | |
| 13 - (void)underlaySurfaceRemoved; | |
| 14 @end | |
| 15 | |
| 16 #endif // CONTENT_PUBLIC_BROWSER_ACCELERATED_WINDOW_INTERFACE_H_ | |
| OLD | NEW |