-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stephen Cobbe
committed
Apr 11, 2017
1 parent
33dc18a
commit 8936d7f
Showing
31 changed files
with
428 additions
and
771 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
Source/ObjectiveDropboxOfficial/Headers/Internal/OAuth/DBOAuthManager+Protected.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| /// | ||
| /// Copyright (c) 2016 Dropbox, Inc. All rights reserved. | ||
| /// | ||
|
|
||
| #import <Foundation/Foundation.h> | ||
|
|
||
| #import "DBOAuthManager.h" | ||
|
|
||
| @interface DBOAuthManager (Protected) | ||
|
|
||
| - (DBOAuthResult * _Nonnull)extractFromRedirectURL:(NSURL * _Nonnull)url; | ||
|
|
||
| @end |
19 changes: 19 additions & 0 deletions
19
Source/ObjectiveDropboxOfficial/Headers/Internal/Resources/DBSDKSystem.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| /// | ||
| /// Copyright (c) 2016 Dropbox, Inc. All rights reserved. | ||
| /// Copyright (c) 2011 BJ Homer. All rights reserved. | ||
| /// | ||
|
|
||
| /* | ||
| * System Versioning Preprocessor Macros | ||
| */ | ||
|
|
||
| #define SYSTEM_VERSION_EQUAL_TO(v) \ | ||
| ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) | ||
| #define SYSTEM_VERSION_GREATER_THAN(v) \ | ||
| ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) | ||
| #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) \ | ||
| ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) | ||
| #define SYSTEM_VERSION_LESS_THAN(v) \ | ||
| ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) | ||
| #define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) \ | ||
| ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.