Skip to content

Commit

Permalink
Make MDCInkGestureRecognizer public
Browse files Browse the repository at this point in the history
Summary: MDCInkTouchController publicly exposes a gestureRecognizer, but the implementation code for MDCInkGestureRecognizer is private. Because of this MDCInkGestureRecognizer must have a forward declaration, but using a forward declaration causes problems with @compatibility_alias.

Reviewers: ajsecord, O1 Material components iOS, randallli

Reviewed By: O1 Material components iOS, randallli

Tags: #material_components_ios

Differential Revision: http://codereview.cc/D1688
  • Loading branch information
Junius Gunaratne committed Oct 6, 2016
1 parent 531a53b commit 5ec47ce
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion components/Ink/src/MDCInkTouchController.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

#import <UIKit/UIKit.h>

@class MDCInkGestureRecognizer;
#import "MDCInkGestureRecognizer.h"

@class MDCInkTouchController;
@class MDCInkView;
@protocol MDCInkTouchControllerDelegate;
Expand Down
1 change: 0 additions & 1 deletion components/Ink/src/MDCInkTouchController.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#import "MDCInkTouchController.h"

#import "MDCInkView.h"
#import "private/MDCInkGestureRecognizer.h"

static const NSTimeInterval kInkTouchDelayInterval = 0.1;

Expand Down

0 comments on commit 5ec47ce

Please sign in to comment.