Skip to content

Commit

Permalink
Renaming Remoting Android Touch Input classes to prepare for refactor.
Browse files Browse the repository at this point in the history
The TrackingInputHandler class is going to be refactored in a future CL
however it is going to be split into three chunks (local input handler,
remote input handler, desk image manipulation) which confuses git to the
point that git thinks it is a new file after the rename.  This CL
updates the class/interface file and name so that history will be
preserved correctly when I split up the TrackingInputHandler class.

BUG=454549

Review URL: https://codereview.chromium.org/1437903002

Cr-Commit-Position: refs/heads/master@{#359118}
  • Loading branch information
joedow authored and Commit bot committed Nov 11, 2015
1 parent 3fa6e1c commit 351d73e
Show file tree
Hide file tree
Showing 4 changed files with 521 additions and 522 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class DesktopView extends SurfaceView implements DesktopViewInterface,
private static final String TAG = "Chromoting";

private final RenderData mRenderData;
private TouchInputHandler mInputHandler;
private TouchInputHandlerInterface mInputHandler;

/** The parent Desktop activity. */
private Desktop mDesktop;
Expand Down Expand Up @@ -130,7 +130,7 @@ public DesktopView(Context context, AttributeSet attributes) {
setFocusableInTouchMode(true);

mRenderData = new RenderData();
mInputHandler = new TrackingInputHandler(this, context, mRenderData);
mInputHandler = new TouchInputHandler(this, context, mRenderData);
mRepaintPending = false;

getHolder().addCallback(this);
Expand Down
Loading

0 comments on commit 351d73e

Please sign in to comment.