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 CHROME_BROWSER_UI_VIEWS_INFOBARS_MEDIA_STREAM_INFOBAR_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_INFOBARS_MEDIA_STREAM_INFOBAR_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_MEDIA_STREAM_INFOBAR_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_MEDIA_STREAM_INFOBAR_H_ |
7 | 7 |
8 #include "chrome/browser/infobars/infobar_delegate.h" | 8 #include "chrome/browser/api/infobars/infobar_delegate.h" |
9 #include "chrome/browser/media/media_stream_devices_menu_model.h" | 9 #include "chrome/browser/media/media_stream_devices_menu_model.h" |
10 #include "chrome/browser/ui/views/infobars/infobar_background.h" | 10 #include "chrome/browser/ui/views/infobars/infobar_background.h" |
11 #include "chrome/browser/ui/views/infobars/infobar_view.h" | 11 #include "chrome/browser/ui/views/infobars/infobar_view.h" |
12 #include "ui/views/controls/button/menu_button_listener.h" | 12 #include "ui/views/controls/button/menu_button_listener.h" |
13 | 13 |
14 class MediaStreamInfoBarDelegate; | 14 class MediaStreamInfoBarDelegate; |
15 | 15 |
16 namespace views { | 16 namespace views { |
17 class MenuButton; | 17 class MenuButton; |
18 } | 18 } |
(...skipping 30 matching lines...) Expand all Loading... |
49 views::TextButton* allow_button_; | 49 views::TextButton* allow_button_; |
50 views::TextButton* deny_button_; | 50 views::TextButton* deny_button_; |
51 views::MenuButton* devices_menu_button_; | 51 views::MenuButton* devices_menu_button_; |
52 | 52 |
53 MediaStreamDevicesMenuModel devices_menu_model_; | 53 MediaStreamDevicesMenuModel devices_menu_model_; |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(MediaStreamInfoBar); | 55 DISALLOW_COPY_AND_ASSIGN(MediaStreamInfoBar); |
56 }; | 56 }; |
57 | 57 |
58 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_MEDIA_STREAM_INFOBAR_H_ | 58 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_MEDIA_STREAM_INFOBAR_H_ |
OLD | NEW |