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

Side by Side Diff: chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER _H_ 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER _H_
6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER _H_ 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER _H_
7 7
8 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h" 8 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 16 matching lines...) Expand all
27 virtual ~BrowserShortcutLauncherItemController(); 27 virtual ~BrowserShortcutLauncherItemController();
28 28
29 // Updates the activation state of the Broswer item. 29 // Updates the activation state of the Broswer item.
30 void UpdateBrowserItemState(); 30 void UpdateBrowserItemState();
31 31
32 // Sets the shelf id for the browser window if the browser is represented. 32 // Sets the shelf id for the browser window if the browser is represented.
33 void SetShelfIDForBrowserWindowContents(Browser* browser, 33 void SetShelfIDForBrowserWindowContents(Browser* browser,
34 content::WebContents* web_contents); 34 content::WebContents* web_contents);
35 35
36 // LauncherItemController overrides: 36 // LauncherItemController overrides:
37 virtual bool IsOpen() const OVERRIDE; 37 virtual bool IsOpen() const override;
38 virtual bool IsVisible() const OVERRIDE; 38 virtual bool IsVisible() const override;
39 virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE; 39 virtual void Launch(ash::LaunchSource source, int event_flags) override;
40 virtual bool Activate(ash::LaunchSource source) OVERRIDE; 40 virtual bool Activate(ash::LaunchSource source) override;
41 virtual ChromeLauncherAppMenuItems GetApplicationList( 41 virtual ChromeLauncherAppMenuItems GetApplicationList(
42 int event_flags) OVERRIDE; 42 int event_flags) override;
43 virtual bool ItemSelected(const ui::Event& event) OVERRIDE; 43 virtual bool ItemSelected(const ui::Event& event) override;
44 virtual base::string16 GetTitle() OVERRIDE; 44 virtual base::string16 GetTitle() override;
45 virtual ui::MenuModel* CreateContextMenu( 45 virtual ui::MenuModel* CreateContextMenu(
46 aura::Window* root_window) OVERRIDE; 46 aura::Window* root_window) override;
47 virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) OVERRIDE; 47 virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override;
48 virtual bool IsDraggable() OVERRIDE; 48 virtual bool IsDraggable() override;
49 virtual bool ShouldShowTooltip() OVERRIDE; 49 virtual bool ShouldShowTooltip() override;
50 virtual void Close() OVERRIDE; 50 virtual void Close() override;
51 51
52 private: 52 private:
53 // Get the favicon for the browser list entry for |web_contents|. 53 // Get the favicon for the browser list entry for |web_contents|.
54 // Note that for incognito windows the incognito icon will be returned. 54 // Note that for incognito windows the incognito icon will be returned.
55 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; 55 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const;
56 56
57 // Get the title for the browser list entry for |web_contents|. 57 // Get the title for the browser list entry for |web_contents|.
58 // If |web_contents| has not loaded, returns "Net Tab". 58 // If |web_contents| has not loaded, returns "Net Tab".
59 base::string16 GetBrowserListTitle(content::WebContents* web_contents) const; 59 base::string16 GetBrowserListTitle(content::WebContents* web_contents) const;
60 60
61 // Check if the given |web_contents| is in incognito mode. 61 // Check if the given |web_contents| is in incognito mode.
62 bool IsIncognito(content::WebContents* web_contents) const; 62 bool IsIncognito(content::WebContents* web_contents) const;
63 63
64 // Activate a browser - or advance to the next one on the list. 64 // Activate a browser - or advance to the next one on the list.
65 void ActivateOrAdvanceToNextBrowser(); 65 void ActivateOrAdvanceToNextBrowser();
66 66
67 // Returns true when the given |browser| is listed in the browser application 67 // Returns true when the given |browser| is listed in the browser application
68 // list. 68 // list.
69 bool IsBrowserRepresentedInBrowserList(Browser* browser); 69 bool IsBrowserRepresentedInBrowserList(Browser* browser);
70 70
71 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); 71 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController);
72 }; 72 };
73 73
74 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL LER_H_ 74 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL LER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698