Home | History | Annotate | Download | only in content

Lines Matching refs:AppActivity

24 class AppActivity;
26 // This class keeps track of all existing |AppActivity|s and shuts down all of
28 // the |AppActivity| in the Activity list as proxy to allow restarting of the
36 // Register an |AppActivity| with this application.
37 void RegisterAppActivity(AppActivity* app_activity);
39 // Unregister a previously attached |AppActivity|.
40 // Note that detaching the last |AppActivity| will delete this object - unless
43 void UnregisterAppActivity(AppActivity* app_activity);
48 // Returns the |AppActivity| at |index|. It will return NULL if an invalid
50 AppActivity* GetAppActivityAt(size_t index);
83 AppActivity* GetMruActivity();
86 std::vector<AppActivity*> activity_list_;