Skip to content

Commit

Permalink
Automated fixups for Instagram
Browse files Browse the repository at this point in the history
Reviewed By: dreiss

Differential Revision: D6168048

fbshipit-source-id: 0e51319d93fd697db01ea3933f48cd06a6ffac12
  • Loading branch information
jkeljo authored and facebook-github-bot committed Oct 27, 2017
1 parent bbc90b4 commit dd016f3
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 22 deletions.
1 change: 1 addition & 0 deletions ReactAndroid/src/main/java/com/facebook/react/bridge/BUCK
Expand Up @@ -12,6 +12,7 @@ android_library(
provided_deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
],
required_for_source_only_abi = True,
visibility = [
"PUBLIC",
],
Expand Down
1 change: 1 addition & 0 deletions ReactAndroid/src/main/java/com/facebook/react/common/BUCK
Expand Up @@ -16,6 +16,7 @@ android_library(
provided_deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
],
required_for_source_only_abi = True,
visibility = [
"PUBLIC",
],
Expand Down
Expand Up @@ -9,17 +9,14 @@

package com.facebook.react.devsupport;

import javax.annotation.Nullable;

import java.util.HashMap;
import java.util.concurrent.Semaphore;
import java.util.concurrent.atomic.AtomicInteger;

import android.os.Handler;
import android.os.Looper;

import com.facebook.infer.annotation.Assertions;
import com.facebook.react.bridge.JavaJSExecutor;
import java.util.HashMap;
import java.util.concurrent.Semaphore;
import java.util.concurrent.atomic.AtomicInteger;
import javax.annotation.Nullable;

/**
* Executes JS remotely via the react nodejs server as a proxy to a browser on the host machine.
Expand Down Expand Up @@ -160,8 +157,7 @@ public void close() {
}

@Override
public void loadApplicationScript(String sourceURL)
throws ProxyExecutorException {
public void loadApplicationScript(String sourceURL) throws JavaJSExecutor.ProxyExecutorException {
JSExecutorCallbackFuture callback = new JSExecutorCallbackFuture();
Assertions.assertNotNull(mWebSocketClient).loadApplicationScript(
sourceURL,
Expand All @@ -176,7 +172,7 @@ public void loadApplicationScript(String sourceURL)

@Override
public @Nullable String executeJSCall(String methodName, String jsonArgsArray)
throws ProxyExecutorException {
throws JavaJSExecutor.ProxyExecutorException {
JSExecutorCallbackFuture callback = new JSExecutorCallbackFuture();
Assertions.assertNotNull(mWebSocketClient).executeJSCall(
methodName,
Expand Down
Expand Up @@ -3,6 +3,7 @@ include_defs("//ReactAndroid/DEFS")
android_library(
name = "annotations",
srcs = glob(["**/*.java"]),
required_for_source_only_abi = True,
visibility = [
"PUBLIC",
],
Expand Down
Expand Up @@ -14,6 +14,7 @@ android_library(
provided_deps = [
react_native_dep("third-party/android/support/v4:lib-support-v4"),
],
required_for_source_only_abi = True,
visibility = [
"PUBLIC",
],
Expand Down
Expand Up @@ -3,6 +3,7 @@ include_defs("//ReactAndroid/DEFS")
android_library(
name = "annotations",
srcs = glob(["*.java"]),
required_for_source_only_abi = True,
visibility = [
"PUBLIC",
],
Expand Down
Expand Up @@ -12,7 +12,7 @@
*/
/* package */ class OpacityAnimation extends Animation {

static class OpacityAnimationListener implements AnimationListener {
static class OpacityAnimationListener implements Animation.AnimationListener {

private final View mView;
private boolean mLayerTypeChanged = false;
Expand Down
Expand Up @@ -11,6 +11,7 @@ android_library(
react_native_dep("third-party/android/support-annotations:android-support-annotations"),
react_native_dep("third-party/android/support/v4:lib-support-v4"),
],
required_for_source_only_abi = True,
visibility = ["PUBLIC"],
deps = [
react_native_dep("third-party/java/jsr-305:jsr-305"),
Expand Down
Expand Up @@ -54,13 +54,13 @@ public class ReactViewGroup extends ViewGroup implements

/**
* This listener will be set for child views when removeClippedSubview property is enabled. When
* children layout is updated, it will call {@link #updateSubviewClipStatus} to notify parent
* view about that fact so that view can be attached/detached if necessary.
* children layout is updated, it will call {@link #updateSubviewClipStatus} to notify parent view
* about that fact so that view can be attached/detached if necessary.
*
* TODO(7728005): Attach/detach views in batch - once per frame in case when multiple children
* <p>TODO(7728005): Attach/detach views in batch - once per frame in case when multiple children
* update their layout.
*/
private static final class ChildrenLayoutChangeListener implements OnLayoutChangeListener {
private static final class ChildrenLayoutChangeListener implements View.OnLayoutChangeListener {

private final ReactViewGroup mParent;

Expand Down Expand Up @@ -396,7 +396,7 @@ protected void onAttachedToWindow() {
}

@Override
public void addView(View child, int index, LayoutParams params) {
public void addView(View child, int index, ViewGroup.LayoutParams params) {
// This will get called for every overload of addView so there is not need to override every method.
mDrawingOrderHelper.handleAddView(child);
setChildrenDrawingOrderEnabled(mDrawingOrderHelper.shouldEnableCustomDrawingOrder());
Expand Down Expand Up @@ -468,7 +468,8 @@ protected void dispatchSetPressed(boolean pressed) {
addViewWithSubviewClippingEnabled(child, index, sDefaultLayoutParam);
}

/*package*/ void addViewWithSubviewClippingEnabled(View child, int index, LayoutParams params) {
/*package*/ void addViewWithSubviewClippingEnabled(
View child, int index, ViewGroup.LayoutParams params) {
Assertions.assertCondition(mRemoveClippedSubviews);
Assertions.assertNotNull(mClippingRect);
Assertions.assertNotNull(mAllChildren);
Expand Down
Expand Up @@ -9,19 +9,17 @@

package com.facebook.react.views.viewpager;

import java.util.ArrayList;
import java.util.List;

import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;

import com.facebook.react.bridge.ReactContext;
import com.facebook.react.uimanager.UIManagerModule;
import com.facebook.react.uimanager.events.EventDispatcher;
import com.facebook.react.uimanager.events.NativeGestureUtil;
import java.util.ArrayList;
import java.util.List;

/**
* Wrapper view for {@link ViewPager}. It's forwarding calls to {@link ViewGroup#addView} to add
Expand Down Expand Up @@ -118,7 +116,7 @@ public boolean isViewFromObject(View view, Object object) {
}
}

private class PageChangeListener implements OnPageChangeListener {
private class PageChangeListener implements ViewPager.OnPageChangeListener {

@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
Expand Down

0 comments on commit dd016f3

Please sign in to comment.