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

Side by Side Diff: chrome/browser/ui/cocoa/browser_window_cocoa.h

Issue 1983803002: Added notification when user presses backspace to use new shortcut. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@subtle-notification-view-refactor
Patch Set: Respond to pkasting review. Created 4 years, 7 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_COCOA_BROWSER_WINDOW_COCOA_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_
7 7
8 #include "base/mac/scoped_nsobject.h" 8 #include "base/mac/scoped_nsobject.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "chrome/browser/extensions/extension_keybinding_registry.h" 10 #include "chrome/browser/extensions/extension_keybinding_registry.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 gfx::Rect GetBounds() const override; 75 gfx::Rect GetBounds() const override;
76 gfx::Size GetContentsSize() const override; 76 gfx::Size GetContentsSize() const override;
77 bool IsMaximized() const override; 77 bool IsMaximized() const override;
78 bool IsMinimized() const override; 78 bool IsMinimized() const override;
79 void Maximize() override; 79 void Maximize() override;
80 void Minimize() override; 80 void Minimize() override;
81 void Restore() override; 81 void Restore() override;
82 bool ShouldHideUIForFullscreen() const override; 82 bool ShouldHideUIForFullscreen() const override;
83 bool IsFullscreen() const override; 83 bool IsFullscreen() const override;
84 bool IsFullscreenBubbleVisible() const override; 84 bool IsFullscreenBubbleVisible() const override;
85 void ShowNewBackShortcutBubble(bool forward) override;
85 LocationBar* GetLocationBar() const override; 86 LocationBar* GetLocationBar() const override;
86 void SetFocusToLocationBar(bool select_all) override; 87 void SetFocusToLocationBar(bool select_all) override;
87 void UpdateReloadStopState(bool is_loading, bool force) override; 88 void UpdateReloadStopState(bool is_loading, bool force) override;
88 void UpdateToolbar(content::WebContents* contents) override; 89 void UpdateToolbar(content::WebContents* contents) override;
89 void ResetToolbarTabState(content::WebContents* contents) override; 90 void ResetToolbarTabState(content::WebContents* contents) override;
90 void FocusToolbar() override; 91 void FocusToolbar() override;
91 ToolbarActionsBar* GetToolbarActionsBar() override; 92 ToolbarActionsBar* GetToolbarActionsBar() override;
92 void ToolbarSizeChanged(bool is_animating) override; 93 void ToolbarSizeChanged(bool is_animating) override;
93 void FocusAppMenu() override; 94 void FocusAppMenu() override;
94 void FocusBookmarksToolbar() override; 95 void FocusBookmarksToolbar() override;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ui::WindowShowState initial_show_state_; 195 ui::WindowShowState initial_show_state_;
195 NSInteger attention_request_id_; // identifier from requestUserAttention 196 NSInteger attention_request_id_; // identifier from requestUserAttention
196 197
197 // Preserves window alert state to show appropriate icon in the window title 198 // Preserves window alert state to show appropriate icon in the window title
198 // which can be audio playing, muting or none (determined by alert state of 199 // which can be audio playing, muting or none (determined by alert state of
199 // tabs. 200 // tabs.
200 TabAlertState alert_state_; 201 TabAlertState alert_state_;
201 }; 202 };
202 203
203 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ 204 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698