Add onClickPagedViewIcon to the Launcher.

Change-Id: I34505ee5c9a6fe6ddd1a9f3134829fe0481e8bc0
diff --git a/src/com/android/launcher3/Launcher.java b/src/com/android/launcher3/Launcher.java
index f1ce235..19dbe6a 100644
--- a/src/com/android/launcher3/Launcher.java
+++ b/src/com/android/launcher3/Launcher.java
@@ -2444,6 +2444,17 @@
     }
 
     /**
+     * Event handler for a paged view icon click.
+     * @param v The view that was clicked.
+     * @param appInfo The {link AppInfo} of the view.
+     */
+    public void onClickPagedViewIcon(View v, AppInfo appInfo) {
+        if (LOGD) Log.d(TAG, "onClickPagedViewIcon");
+        startActivitySafely(v, appInfo.intent, appInfo);
+        getStats().recordLaunch(appInfo.intent);
+    }
+
+    /**
      * Event handler for an app shortcut click.
      *
      * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.