OLD | NEW |
(Empty) | |
| 1 // Copyright 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 #ifndef IOS_CHROME_BROWSER_UI_PRERENDER_DELEGATE_H_ |
| 5 #define IOS_CHROME_BROWSER_UI_PRERENDER_DELEGATE_H_ |
| 6 |
| 7 // A protocol for accessing and commanding prerenderer. |
| 8 @protocol PrerenderDelegate |
| 9 @optional |
| 10 // Discard prerenderer (e.g. when a dialog was suppressed). |
| 11 - (void)discardPrerender; |
| 12 // Is pre-render tab. |
| 13 - (BOOL)isPrerenderTab; |
| 14 @end |
| 15 |
| 16 #endif // IOS_CHROME_BROWSER_UI_PRERENDER_DELEGATE_H_ |
OLD | NEW |