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

Side by Side Diff: ui/views/cocoa/bridged_content_view.h

Issue 2505943002: MacViews: Fix accelerator handling while Omnibox is in focus. (Closed)
Patch Set: Remove performKeyEquivalent:, update keyDown:, add tests. 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 UI_VIEWS_COCOA_BRIDGED_CONTENT_VIEW_H_ 5 #ifndef UI_VIEWS_COCOA_BRIDGED_CONTENT_VIEW_H_
6 #define UI_VIEWS_COCOA_BRIDGED_CONTENT_VIEW_H_ 6 #define UI_VIEWS_COCOA_BRIDGED_CONTENT_VIEW_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include "base/optional.h"
tapted 2016/11/18 07:28:04 nit: remove
themblsha 2016/11/18 13:31:50 Done.
10 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
11 #import "ui/base/cocoa/tool_tip_base_view.h" 12 #import "ui/base/cocoa/tool_tip_base_view.h"
12 #import "ui/base/cocoa/tracking_area.h" 13 #import "ui/base/cocoa/tracking_area.h"
13 14
14 namespace ui { 15 namespace ui {
15 class TextInputClient; 16 class TextInputClient;
16 } 17 }
17 18
18 namespace views { 19 namespace views {
19 class View; 20 class View;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // Update windowMask_ depending on the current view bounds. 81 // Update windowMask_ depending on the current view bounds.
81 - (void)updateWindowMask; 82 - (void)updateWindowMask;
82 83
83 // Notifies the associated FocusManager whether full keyboard access is enabled 84 // Notifies the associated FocusManager whether full keyboard access is enabled
84 // or not. 85 // or not.
85 - (void)updateFullKeyboardAccess; 86 - (void)updateFullKeyboardAccess;
86 87
87 @end 88 @end
88 89
89 #endif // UI_VIEWS_COCOA_BRIDGED_CONTENT_VIEW_H_ 90 #endif // UI_VIEWS_COCOA_BRIDGED_CONTENT_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698