Prevent app list doodle from being pinch-to-zoomed.
[chromium-blink-merge.git] / ios / web / web_state / ui / crw_swipe_recognizer_provider.h
blob291fff36493ccd4a8e37079c8a8c5df129cd85ed
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.
5 #ifndef IOS_WEB_WEB_STATE_UI_CRW_SWIPE_RECOGNIZER_PROVIDER_H_
6 #define IOS_WEB_WEB_STATE_UI_CRW_SWIPE_RECOGNIZER_PROVIDER_H_
8 #import <UIKit/UIKit.h>
10 // A protocol implemented by a provider of swipe recognizers for a web view.
11 @protocol CRWSwipeRecognizerProvider
13 // Returns set of UIGestureRecognizer objects.
14 - (NSSet*)swipeRecognizers;
16 @end
18 #endif // IOS_WEB_WEB_STATE_UI_CRW_SWIPE_RECOGNIZER_PROVIDER_H_