| 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 |
| 5 #ifndef IOS_WEB_WEB_STATE_UI_CRW_SWIPE_RECOGNIZER_PROVIDER_H_ |
| 6 #define IOS_WEB_WEB_STATE_UI_CRW_SWIPE_RECOGNIZER_PROVIDER_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 // A protocol implemented by a provider of swipe recognizers for a web view. |
| 11 @protocol CRWSwipeRecognizerProvider |
| 12 |
| 13 // Returns set of UIGestureRecognizer objects. |
| 14 - (NSSet*)swipeRecognizers; |
| 15 |
| 16 @end |
| 17 |
| 18 #endif // IOS_WEB_WEB_STATE_UI_CRW_SWIPE_RECOGNIZER_PROVIDER_H_ |
| OLD | NEW |