Move EditEventFragment into AllInOneActivity

This change makes AllInOneActivity be the launch point for edit event
and causes it to take over as a full screen view. This way we can
handle message passing between edit event and the rest of calendar
as well as maintain the actionbar items.

Also fixes b/2954347

Change-Id: Ib28e5382abbfe4f72a183c0945f27e61b7fd176e
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f9bec75..5b5b65a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -62,18 +62,12 @@
                 <data android:host="com.android.calendar" />
                 <data android:scheme="content"/>
             </intent-filter>
-        </activity-alias>
-
-        <activity android:name="EditEventActivity" android:label="@string/event_edit_title"
-            android:theme="@android:style/Theme.Light.Holo"
-            android:configChanges="orientation|keyboardHidden">
-
             <intent-filter>
                 <action android:name="android.intent.action.EDIT" />
                 <category android:name="android.intent.category.DEFAULT" />
                 <data android:mimeType="vnd.android.cursor.item/event" />
             </intent-filter>
-        </activity>
+        </activity-alias>
 
         <activity android:name="EventInfoActivity" android:label="@string/event_info_title"
             android:theme="@style/CalendarTheme.WithActionBar"