summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_command_controller.h
diff options
context:
space:
mode:
authormsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-13 16:47:06 +0000
committermsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-13 16:47:06 +0000
commit338416c007a0aa0386d4ab83d60112f6f60d4013 (patch)
tree1850282b8073f04b069ba50a01b4a40064eab1a0 /chrome/browser/ui/browser_command_controller.h
parent11f85951bcac785050a646368f5b418a97828f76 (diff)
downloadchromium_src-338416c007a0aa0386d4ab83d60112f6f60d4013.zip
chromium_src-338416c007a0aa0386d4ab83d60112f6f60d4013.tar.gz
chromium_src-338416c007a0aa0386d4ab83d60112f6f60d4013.tar.bz2
Support full-screen and single-profile avatar bubbles.
Enable IDC_SHOW_AVATAR_MENU for normal browser windows. (full-screen and single-profile windows are now allowed) (non-tabbed and incognito windows are still disallowed) Nix BrowserCommandController's use of ProfileManager. (no commands rely on the profile count anymore) Cleanup some BrowserCommandController code. Inline AvatarMenuButton::ShowAvatarBubble in BrowserView. (ShowAvatarBubbleFromAvatarButton needs to set an anchor) (single-profile windows have no avatar icon; use hotdogs) Anchor to the Chrome menu button in Mac single-profile too. Take an ArrowPaintType in AvatarMenuBubbleView::ShowBubble. (lets fullscreen hide the arrow, there's no visible anchor) (this corresponds with fullscreen bookmark bubble behavior) Remove a stale Windows Valgrind DrMemory test exclusion entry. (test name was changed, but the exclusion wasn't; isn't needed) BUG=255452,167014 TEST=The avatar menu shows for Ctrl+Shift+M even in fullscreen and even for single-profile Chrome windows. Test with and without the experimental --new-profile-management, and in LTR and RTL Chrome UI modes. R=pkasting@chromium.org, asvitkine@chromium.org Review URL: https://codereview.chromium.org/264303006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_command_controller.h')
-rw-r--r--chrome/browser/ui/browser_command_controller.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/chrome/browser/ui/browser_command_controller.h b/chrome/browser/ui/browser_command_controller.h
index da9e995..bfba09e 100644
--- a/chrome/browser/ui/browser_command_controller.h
+++ b/chrome/browser/ui/browser_command_controller.h
@@ -11,7 +11,6 @@
#include "base/prefs/pref_member.h"
#include "chrome/browser/command_updater.h"
#include "chrome/browser/command_updater_delegate.h"
-#include "chrome/browser/profiles/profile_info_cache_observer.h"
#include "chrome/browser/sessions/tab_restore_service_observer.h"
#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
#include "ui/base/window_open_disposition.h"
@@ -19,7 +18,6 @@
class Browser;
class BrowserWindow;
class Profile;
-class ProfileManager;
namespace content {
struct NativeWebKeyboardEvent;
@@ -28,11 +26,10 @@ struct NativeWebKeyboardEvent;
namespace chrome {
class BrowserCommandController : public CommandUpdaterDelegate,
- public ProfileInfoCacheObserver,
public TabStripModelObserver,
public TabRestoreServiceObserver {
public:
- BrowserCommandController(Browser* browser, ProfileManager* profile_manager);
+ explicit BrowserCommandController(Browser* browser);
virtual ~BrowserCommandController();
CommandUpdater* command_updater() { return &command_updater_; }
@@ -84,11 +81,6 @@ class BrowserCommandController : public CommandUpdaterDelegate,
int id,
WindowOpenDisposition disposition) OVERRIDE;
- // Overridden from ProfileInfoCacheObserver:
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE;
- virtual void OnProfileWasRemoved(const base::FilePath& profile_path,
- const base::string16& profile_name) OVERRIDE;
-
// Overridden from TabStripModelObserver:
virtual void TabInsertedAt(content::WebContents* contents,
int index,
@@ -141,10 +133,6 @@ class BrowserCommandController : public CommandUpdaterDelegate,
// window is in.
void UpdateCommandsForFullscreenMode();
- // Update commands whose state depends on whether multiple profiles are
- // allowed.
- void UpdateCommandsForMultipleProfiles();
-
// Updates the printing command state.
void UpdatePrintingState();
@@ -175,8 +163,6 @@ class BrowserCommandController : public CommandUpdaterDelegate,
Browser* browser_;
- ProfileManager* profile_manager_;
-
// The CommandUpdater that manages the browser window commands.
CommandUpdater command_updater_;