FBSettings.m 2.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. */
  9. #import "FBSettings.h"
  10. NSString* const FB_SETTING_USE_COMPACT_RESPONSES = @"shouldUseCompactResponses";
  11. NSString* const FB_SETTING_ELEMENT_RESPONSE_ATTRIBUTES = @"elementResponseAttributes";
  12. NSString* const FB_SETTING_MJPEG_SERVER_SCREENSHOT_QUALITY = @"mjpegServerScreenshotQuality";
  13. NSString* const FB_SETTING_MJPEG_SERVER_FRAMERATE = @"mjpegServerFramerate";
  14. NSString* const FB_SETTING_MJPEG_SCALING_FACTOR = @"mjpegScalingFactor";
  15. NSString* const FB_SETTING_MJPEG_FIX_ORIENTATION = @"mjpegFixOrientation";
  16. NSString* const FB_SETTING_SCREENSHOT_QUALITY = @"screenshotQuality";
  17. NSString* const FB_SETTING_KEYBOARD_AUTOCORRECTION = @"keyboardAutocorrection";
  18. NSString* const FB_SETTING_KEYBOARD_PREDICTION = @"keyboardPrediction";
  19. NSString* const FB_SETTING_SNAPSHOT_TIMEOUT = @"snapshotTimeout";
  20. NSString* const FB_SETTING_CUSTOM_SNAPSHOT_TIMEOUT = @"customSnapshotTimeout";
  21. NSString* const FB_SETTING_SNAPSHOT_MAX_DEPTH = @"snapshotMaxDepth";
  22. NSString* const FB_SETTING_USE_FIRST_MATCH = @"useFirstMatch";
  23. NSString* const FB_SETTING_BOUND_ELEMENTS_BY_INDEX = @"boundElementsByIndex";
  24. NSString* const FB_SETTING_REDUCE_MOTION = @"reduceMotion";
  25. NSString* const FB_SETTING_DEFAULT_ACTIVE_APPLICATION = @"defaultActiveApplication";
  26. NSString* const FB_SETTING_ACTIVE_APP_DETECTION_POINT = @"activeAppDetectionPoint";
  27. NSString* const FB_SETTING_INCLUDE_NON_MODAL_ELEMENTS = @"includeNonModalElements";
  28. NSString* const FB_SETTING_DEFAULT_ALERT_ACTION = @"defaultAlertAction";
  29. NSString* const FB_SETTING_ACCEPT_ALERT_BUTTON_SELECTOR = @"acceptAlertButtonSelector";
  30. NSString* const FB_SETTING_DISMISS_ALERT_BUTTON_SELECTOR = @"dismissAlertButtonSelector";
  31. NSString* const FB_SETTING_SCREENSHOT_ORIENTATION = @"screenshotOrientation";
  32. NSString* const FB_SETTING_WAIT_FOR_IDLE_TIMEOUT = @"waitForIdleTimeout";
  33. NSString* const FB_SETTING_ANIMATION_COOL_OFF_TIMEOUT = @"animationCoolOffTimeout";