aboutsummaryrefslogtreecommitdiffhomepage
path: root/Functions
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-03-20 12:52:11 -0700
committerGravatar GitHub <noreply@github.com>2018-03-20 12:52:11 -0700
commitb841009ea13b8ed683dfa1d57b863706d486f0d6 (patch)
treef57d8ec205c8e394074b2ccac44ff55eaf6ec108 /Functions
parentb7f35a0b76bb2afd682b806d2b25568611612557 (diff)
Run scripts/style.sh on Functions (#949)
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Example/FirebaseFunctions/FIRAppDelegate.h4
-rw-r--r--Functions/Example/FirebaseFunctions/FIRAppDelegate.m45
-rw-r--r--Functions/Example/FirebaseFunctions/FIRViewController.m14
-rw-r--r--Functions/Example/FirebaseFunctions/main.m9
-rw-r--r--Functions/FirebaseFunctions/Public/FIRError.h117
-rw-r--r--Functions/FirebaseFunctions/Public/FIRFunctions.h2
-rw-r--r--Functions/FirebaseFunctions/Public/FIRHTTPSCallable.h1
7 files changed, 96 insertions, 96 deletions
diff --git a/Functions/Example/FirebaseFunctions/FIRAppDelegate.h b/Functions/Example/FirebaseFunctions/FIRAppDelegate.h
index 500ee08..1d6d40b 100644
--- a/Functions/Example/FirebaseFunctions/FIRAppDelegate.h
+++ b/Functions/Example/FirebaseFunctions/FIRAppDelegate.h
@@ -14,8 +14,8 @@
@import UIKit;
-@interface FIRAppDelegate : UIResponder <UIApplicationDelegate>
+@interface FIRAppDelegate : UIResponder<UIApplicationDelegate>
-@property (strong, nonatomic) UIWindow *window;
+@property(strong, nonatomic) UIWindow *window;
@end
diff --git a/Functions/Example/FirebaseFunctions/FIRAppDelegate.m b/Functions/Example/FirebaseFunctions/FIRAppDelegate.m
index 0ecfdea..9568d06 100644
--- a/Functions/Example/FirebaseFunctions/FIRAppDelegate.m
+++ b/Functions/Example/FirebaseFunctions/FIRAppDelegate.m
@@ -16,37 +16,40 @@
@implementation FIRAppDelegate
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
-{
- // Override point for customization after application launch.
- return YES;
+- (BOOL)application:(UIApplication *)application
+ didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
+ // Override point for customization after application launch.
+ return YES;
}
-- (void)applicationWillResignActive:(UIApplication *)application
-{
- // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
- // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
+- (void)applicationWillResignActive:(UIApplication *)application {
+ // Sent when the application is about to move from active to inactive state. This can occur for
+ // certain types of temporary interruptions (such as an incoming phone call or SMS message) or
+ // when the user quits the application and it begins the transition to the background state. Use
+ // this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates.
+ // Games should use this method to pause the game.
}
-- (void)applicationDidEnterBackground:(UIApplication *)application
-{
- // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
- // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
+- (void)applicationDidEnterBackground:(UIApplication *)application {
+ // Use this method to release shared resources, save user data, invalidate timers, and store
+ // enough application state information to restore your application to its current state in case
+ // it is terminated later. If your application supports background execution, this method is
+ // called instead of applicationWillTerminate: when the user quits.
}
-- (void)applicationWillEnterForeground:(UIApplication *)application
-{
- // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
+- (void)applicationWillEnterForeground:(UIApplication *)application {
+ // Called as part of the transition from the background to the inactive state; here you can undo
+ // many of the changes made on entering the background.
}
-- (void)applicationDidBecomeActive:(UIApplication *)application
-{
- // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
+- (void)applicationDidBecomeActive:(UIApplication *)application {
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If
+ // the application was previously in the background, optionally refresh the user interface.
}
-- (void)applicationWillTerminate:(UIApplication *)application
-{
- // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
+- (void)applicationWillTerminate:(UIApplication *)application {
+ // Called when the application is about to terminate. Save data if appropriate. See also
+ // applicationDidEnterBackground:.
}
@end
diff --git a/Functions/Example/FirebaseFunctions/FIRViewController.m b/Functions/Example/FirebaseFunctions/FIRViewController.m
index 901accf..027aabf 100644
--- a/Functions/Example/FirebaseFunctions/FIRViewController.m
+++ b/Functions/Example/FirebaseFunctions/FIRViewController.m
@@ -20,16 +20,14 @@
@implementation FIRViewController
-- (void)viewDidLoad
-{
- [super viewDidLoad];
- // Do any additional setup after loading the view, typically from a nib.
+- (void)viewDidLoad {
+ [super viewDidLoad];
+ // Do any additional setup after loading the view, typically from a nib.
}
-- (void)didReceiveMemoryWarning
-{
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
+- (void)didReceiveMemoryWarning {
+ [super didReceiveMemoryWarning];
+ // Dispose of any resources that can be recreated.
}
@end
diff --git a/Functions/Example/FirebaseFunctions/main.m b/Functions/Example/FirebaseFunctions/main.m
index 03b5c12..39c05a5 100644
--- a/Functions/Example/FirebaseFunctions/main.m
+++ b/Functions/Example/FirebaseFunctions/main.m
@@ -15,9 +15,8 @@
@import UIKit;
#import "FIRAppDelegate.h"
-int main(int argc, char * argv[])
-{
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([FIRAppDelegate class]));
- }
+int main(int argc, char* argv[]) {
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([FIRAppDelegate class]));
+ }
}
diff --git a/Functions/FirebaseFunctions/Public/FIRError.h b/Functions/FirebaseFunctions/Public/FIRError.h
index a275633..3048dee 100644
--- a/Functions/FirebaseFunctions/Public/FIRError.h
+++ b/Functions/FirebaseFunctions/Public/FIRError.h
@@ -20,7 +20,8 @@ NS_ASSUME_NONNULL_BEGIN
FOUNDATION_EXPORT NSString *const FIRFunctionsErrorDomain NS_SWIFT_NAME(FunctionsErrorDomain);
// The key for finding error details in the NSError userInfo.
-FOUNDATION_EXPORT NSString *const FIRFunctionsErrorDetailsKey NS_SWIFT_NAME(FunctionsErrorDetailsKey);
+FOUNDATION_EXPORT NSString *const FIRFunctionsErrorDetailsKey
+ NS_SWIFT_NAME(FunctionsErrorDetailsKey);
/**
* The set of error status codes that can be returned from a Callable HTTPS tigger. These are the
@@ -28,63 +29,63 @@ FOUNDATION_EXPORT NSString *const FIRFunctionsErrorDetailsKey NS_SWIFT_NAME(Func
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto#L26
*/
typedef NS_ENUM(NSInteger, FIRFunctionsErrorCode) {
- /** The operation completed successfully. */
- FIRFunctionsErrorCodeOK = 0,
- /** The operation was cancelled (typically by the caller). */
- FIRFunctionsErrorCodeCancelled = 1,
- /** Unknown error or an error from a different error domain. */
- FIRFunctionsErrorCodeUnknown = 2,
- /**
- * Client specified an invalid argument. Note that this differs from `FailedPrecondition`.
- * `InvalidArgument` indicates arguments that are problematic regardless of the state of the
- * system (e.g., an invalid field name).
- */
- FIRFunctionsErrorCodeInvalidArgument = 3,
- /**
- * Deadline expired before operation could complete. For operations that change the state of the
- * system, this error may be returned even if the operation has completed successfully. For
- * example, a successful response from a server could have been delayed long enough for the
- * deadline to expire.
- */
- FIRFunctionsErrorCodeDeadlineExceeded = 4,
- /** Some requested document was not found. */
- FIRFunctionsErrorCodeNotFound = 5,
- /** Some document that we attempted to create already exists. */
- FIRFunctionsErrorCodeAlreadyExists = 6,
- /** The caller does not have permission to execute the specified operation. */
- FIRFunctionsErrorCodePermissionDenied = 7,
- /**
- * Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system
- * is out of space.
- */
- FIRFunctionsErrorCodeResourceExhausted = 8,
- /**
- * Operation was rejected because the system is not in a state required for the operation's
- * execution.
- */
- FIRFunctionsErrorCodeFailedPrecondition = 9,
- /**
- * The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.
- */
- FIRFunctionsErrorCodeAborted = 10,
- /** Operation was attempted past the valid range. */
- FIRFunctionsErrorCodeOutOfRange = 11,
- /** Operation is not implemented or not supported/enabled. */
- FIRFunctionsErrorCodeUnimplemented = 12,
- /**
- * Internal errors. Means some invariant expected by underlying system has been broken. If you
- * see one of these errors, something is very broken.
- */
- FIRFunctionsErrorCodeInternal = 13,
- /**
- * The service is currently unavailable. This is a most likely a transient condition and may be
- * corrected by retrying with a backoff.
- */
- FIRFunctionsErrorCodeUnavailable = 14,
- /** Unrecoverable data loss or corruption. */
- FIRFunctionsErrorCodeDataLoss = 15,
- /** The request does not have valid authentication credentials for the operation. */
- FIRFunctionsErrorCodeUnauthenticated = 16,
+ /** The operation completed successfully. */
+ FIRFunctionsErrorCodeOK = 0,
+ /** The operation was cancelled (typically by the caller). */
+ FIRFunctionsErrorCodeCancelled = 1,
+ /** Unknown error or an error from a different error domain. */
+ FIRFunctionsErrorCodeUnknown = 2,
+ /**
+ * Client specified an invalid argument. Note that this differs from `FailedPrecondition`.
+ * `InvalidArgument` indicates arguments that are problematic regardless of the state of the
+ * system (e.g., an invalid field name).
+ */
+ FIRFunctionsErrorCodeInvalidArgument = 3,
+ /**
+ * Deadline expired before operation could complete. For operations that change the state of the
+ * system, this error may be returned even if the operation has completed successfully. For
+ * example, a successful response from a server could have been delayed long enough for the
+ * deadline to expire.
+ */
+ FIRFunctionsErrorCodeDeadlineExceeded = 4,
+ /** Some requested document was not found. */
+ FIRFunctionsErrorCodeNotFound = 5,
+ /** Some document that we attempted to create already exists. */
+ FIRFunctionsErrorCodeAlreadyExists = 6,
+ /** The caller does not have permission to execute the specified operation. */
+ FIRFunctionsErrorCodePermissionDenied = 7,
+ /**
+ * Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system
+ * is out of space.
+ */
+ FIRFunctionsErrorCodeResourceExhausted = 8,
+ /**
+ * Operation was rejected because the system is not in a state required for the operation's
+ * execution.
+ */
+ FIRFunctionsErrorCodeFailedPrecondition = 9,
+ /**
+ * The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.
+ */
+ FIRFunctionsErrorCodeAborted = 10,
+ /** Operation was attempted past the valid range. */
+ FIRFunctionsErrorCodeOutOfRange = 11,
+ /** Operation is not implemented or not supported/enabled. */
+ FIRFunctionsErrorCodeUnimplemented = 12,
+ /**
+ * Internal errors. Means some invariant expected by underlying system has been broken. If you
+ * see one of these errors, something is very broken.
+ */
+ FIRFunctionsErrorCodeInternal = 13,
+ /**
+ * The service is currently unavailable. This is a most likely a transient condition and may be
+ * corrected by retrying with a backoff.
+ */
+ FIRFunctionsErrorCodeUnavailable = 14,
+ /** Unrecoverable data loss or corruption. */
+ FIRFunctionsErrorCodeDataLoss = 15,
+ /** The request does not have valid authentication credentials for the operation. */
+ FIRFunctionsErrorCodeUnauthenticated = 16,
};
NS_ASSUME_NONNULL_END
diff --git a/Functions/FirebaseFunctions/Public/FIRFunctions.h b/Functions/FirebaseFunctions/Public/FIRFunctions.h
index 40ec634..d01175c 100644
--- a/Functions/FirebaseFunctions/Public/FIRFunctions.h
+++ b/Functions/FirebaseFunctions/Public/FIRFunctions.h
@@ -56,7 +56,7 @@ NS_SWIFT_NAME(Functions)
// clang-format on
/**
- * Creates a reference to the Callable HTTPS trigger with the given name.
+ * Creates a reference to the Callable HTTPS trigger with the given name.
* @param name The name of the Callable HTTPS trigger.
*/
- (FIRHTTPSCallable *)HTTPSCallableWithName:(NSString *)name NS_SWIFT_NAME(httpsCallable(_:));
diff --git a/Functions/FirebaseFunctions/Public/FIRHTTPSCallable.h b/Functions/FirebaseFunctions/Public/FIRHTTPSCallable.h
index 948696d..9298dda 100644
--- a/Functions/FirebaseFunctions/Public/FIRHTTPSCallable.h
+++ b/Functions/FirebaseFunctions/Public/FIRHTTPSCallable.h
@@ -24,7 +24,6 @@ NS_SWIFT_NAME(HTTPSCallableResult)
- (id)init NS_UNAVAILABLE;
-
/**
* The data that was returned from the Callable HTTPS trigger.
*