Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2859)

Unified Diff: chrome/browser/ui/ash/launcher/multi_profile_shell_window_launcher_controller.h

Issue 166573005: Rename apps::ShellWindow to apps::AppWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, nits (rename) Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/ash/launcher/multi_profile_shell_window_launcher_controller.h
diff --git a/chrome/browser/ui/ash/launcher/multi_profile_shell_window_launcher_controller.h b/chrome/browser/ui/ash/launcher/multi_profile_shell_window_launcher_controller.h
index 091f18c8df2cbd2f96357fec1417a7094613c318..dd6bd2820c489bf271aff53dd81c9374ebb30fb1 100644
--- a/chrome/browser/ui/ash/launcher/multi_profile_shell_window_launcher_controller.h
+++ b/chrome/browser/ui/ash/launcher/multi_profile_shell_window_launcher_controller.h
@@ -9,6 +9,8 @@
// Inherits from ShellWindowLauncherController and overwrites the ShellWindow
// observing functions to switch between users dynamically.
+// TODO(jamescook): Rename this to MultiProfileAppWindowLauncherController.
+// http://crbug.com/344079
class MultiProfileShellWindowLauncherController
: public ShellWindowLauncherController {
public:
@@ -20,19 +22,19 @@ class MultiProfileShellWindowLauncherController
virtual void ActiveUserChanged(const std::string& user_email) OVERRIDE;
virtual void AdditionalUserAddedToSession(Profile* profile) OVERRIDE;
- // Overridden from ShellWindowRegistry::Observer:
- virtual void OnShellWindowAdded(apps::ShellWindow* shell_window) OVERRIDE;
- virtual void OnShellWindowRemoved(apps::ShellWindow* shell_window) OVERRIDE;
+ // Overridden from AppWindowRegistry::Observer:
+ virtual void OnAppWindowAdded(apps::AppWindow* app_window) OVERRIDE;
+ virtual void OnAppWindowRemoved(apps::AppWindow* app_window) OVERRIDE;
private:
- typedef std::vector<apps::ShellWindow*> ShellWindowList;
- typedef std::vector<apps::ShellWindowRegistry*> ShellWindowRegistryList;
+ typedef std::vector<apps::AppWindow*> AppWindowList;
+ typedef std::vector<apps::AppWindowRegistry*> AppWindowRegistryList;
- // A list of all shell windows for all users.
- ShellWindowList shell_window_list_;
+ // A list of all app windows for all users.
+ AppWindowList app_window_list_;
- // A list of the shell window registries which we additionally observe.
- ShellWindowRegistryList multi_user_registry_;
+ // A list of the app window registries which we additionally observe.
+ AppWindowRegistryList multi_user_registry_;
DISALLOW_COPY_AND_ASSIGN(MultiProfileShellWindowLauncherController);
};

Powered by Google App Engine
This is Rietveld 408576698