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

Side by Side Diff: chrome/browser/ui/views/frame/native_browser_frame.h

Issue 2074643003: MacViews: Views accelerators table should match the Cocoa one. (Closed) Base URL: ssh://bitbucket.browser.yandex-team.ru/chromium/src.git@master
Patch Set: e --> shortcut Created 4 years, 1 month 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_VIEWS_FRAME_NATIVE_BROWSER_FRAME_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_NATIVE_BROWSER_FRAME_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_NATIVE_BROWSER_FRAME_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_NATIVE_BROWSER_FRAME_H_
7 7
8 #include "ui/base/ui_base_types.h" 8 #include "ui/base/ui_base_types.h"
9 #include "ui/gfx/geometry/rect.h" 9 #include "ui/gfx/geometry/rect.h"
10 #include "ui/views/widget/widget.h" 10 #include "ui/views/widget/widget.h"
11 11
12 class BrowserFrame; 12 class BrowserFrame;
13 class BrowserView; 13 class BrowserView;
14 14
15 namespace content {
16 struct NativeWebKeyboardEvent;
17 }
18
15 namespace views { 19 namespace views {
16 class NativeWidget; 20 class NativeWidget;
17 } 21 }
18 22
19 class NativeBrowserFrame { 23 class NativeBrowserFrame {
20 public: 24 public:
21 virtual ~NativeBrowserFrame() {} 25 virtual ~NativeBrowserFrame() {}
22 26
23 // Returns the platform specific InitParams for initializing our widget. 27 // Returns the platform specific InitParams for initializing our widget.
24 virtual views::Widget::InitParams GetWidgetParams() = 0; 28 virtual views::Widget::InitParams GetWidgetParams() = 0;
25 29
26 // Returns |true| if we should use the custom frame. 30 // Returns |true| if we should use the custom frame.
27 virtual bool UseCustomFrame() const = 0; 31 virtual bool UseCustomFrame() const = 0;
28 32
29 // Returns true if the OS takes care of showing the system menu. Returning 33 // Returns true if the OS takes care of showing the system menu. Returning
30 // false means BrowserFrame handles showing the system menu. 34 // false means BrowserFrame handles showing the system menu.
31 virtual bool UsesNativeSystemMenu() const = 0; 35 virtual bool UsesNativeSystemMenu() const = 0;
32 36
33 // Returns true when the window placement should be stored. 37 // Returns true when the window placement should be stored.
34 virtual bool ShouldSaveWindowPlacement() const = 0; 38 virtual bool ShouldSaveWindowPlacement() const = 0;
35 39
36 // Retrieves the window placement (show state and bounds) for restoring. 40 // Retrieves the window placement (show state and bounds) for restoring.
37 virtual void GetWindowPlacement(gfx::Rect* bounds, 41 virtual void GetWindowPlacement(gfx::Rect* bounds,
38 ui::WindowShowState* show_state) const = 0; 42 ui::WindowShowState* show_state) const = 0;
39 43
44 // Returns true if the |event| was handled by the platform implementation.
45 virtual bool PreHandleKeyboardEvent(
sky 2016/11/07 16:53:34 Make this pure virtual to match the rest of the fu
themblsha 2016/11/08 11:35:20 Done.
46 const content::NativeWebKeyboardEvent& event);
47
48 // Returns true if the |event| was handled by the platform implementation.
49 virtual bool HandleKeyboardEvent(
50 const content::NativeWebKeyboardEvent& event);
51
40 protected: 52 protected:
41 friend class BrowserFrame; 53 friend class BrowserFrame;
42 54
43 // BrowserFrame pass-thrus --------------------------------------------------- 55 // BrowserFrame pass-thrus ---------------------------------------------------
44 // See browser_frame.h for documentation: 56 // See browser_frame.h for documentation:
45 virtual int GetMinimizeButtonOffset() const = 0; 57 virtual int GetMinimizeButtonOffset() const = 0;
46 }; 58 };
47 59
48 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_NATIVE_BROWSER_FRAME_H_ 60 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_NATIVE_BROWSER_FRAME_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/browser/ui/views/frame/native_browser_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698