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

Side by Side Diff: ui/views/controls/menu/menu_message_loop_mac.h

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 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_CONTROLS_MENU_MENU_MESSAGE_LOOP_MAC_H_ 5 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_LOOP_MAC_H_
6 #define UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_LOOP_MAC_H_ 6 #define UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_LOOP_MAC_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
9 #include "ui/views/controls/menu/menu_message_loop.h" 10 #include "ui/views/controls/menu/menu_message_loop.h"
10 11
11 namespace base { 12 namespace base {
12 class RunLoop; 13 class RunLoop;
13 } 14 }
14 15
15 namespace views { 16 namespace views {
16 17
17 class MenuMessageLoopMac : public MenuMessageLoop { 18 class MenuMessageLoopMac : public MenuMessageLoop {
18 public: 19 public:
19 MenuMessageLoopMac(); 20 MenuMessageLoopMac();
20 ~MenuMessageLoopMac() override; 21 ~MenuMessageLoopMac() override;
21 22
22 // Overridden from MenuMessageLoop: 23 // Overridden from MenuMessageLoop:
23 void Run(MenuController* controller, 24 void Run(MenuController* controller,
24 Widget* owner, 25 Widget* owner,
25 bool nested_menu) override; 26 bool nested_menu) override;
26 void QuitNow() override; 27 void QuitNow() override;
27 void ClearOwner() override; 28 void ClearOwner() override;
28 29
29 private: 30 private:
30 base::RunLoop* run_loop_ = nullptr; 31 base::RunLoop* run_loop_ = nullptr;
31 32
32 DISALLOW_COPY_AND_ASSIGN(MenuMessageLoopMac); 33 DISALLOW_COPY_AND_ASSIGN(MenuMessageLoopMac);
33 }; 34 };
34 35
35 } // namespace views 36 } // namespace views
36 37
37 #endif // UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_LOOP_MAC_H_ 38 #endif // UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_LOOP_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698