OLD | NEW |
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 CONTENT_BROWSER_TAB_CONTENTS_POPUP_MENU_HELPER_MAC_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_POPUP_MENU_HELPER_MAC_H_ |
6 #define CONTENT_BROWSER_TAB_CONTENTS_POPUP_MENU_HELPER_MAC_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_POPUP_MENU_HELPER_MAC_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
12 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
13 #include "ui/gfx/rect.h" | 13 #include "ui/gfx/rect.h" |
14 | 14 |
15 struct WebMenuItem; | 15 struct WebMenuItem; |
16 | 16 |
(...skipping 24 matching lines...) Expand all Loading... |
41 const content::NotificationSource& source, | 41 const content::NotificationSource& source, |
42 const content::NotificationDetails& details) OVERRIDE; | 42 const content::NotificationDetails& details) OVERRIDE; |
43 | 43 |
44 content::NotificationRegistrar notification_registrar_; | 44 content::NotificationRegistrar notification_registrar_; |
45 | 45 |
46 content::RenderViewHostImpl* render_view_host_; | 46 content::RenderViewHostImpl* render_view_host_; |
47 | 47 |
48 DISALLOW_COPY_AND_ASSIGN(PopupMenuHelper); | 48 DISALLOW_COPY_AND_ASSIGN(PopupMenuHelper); |
49 }; | 49 }; |
50 | 50 |
51 #endif // CONTENT_BROWSER_TAB_CONTENTS_POPUP_MENU_HELPER_MAC_H_ | 51 #endif // CONTENT_BROWSER_WEB_CONTENTS_POPUP_MENU_HELPER_MAC_H_ |
OLD | NEW |