| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_INTENT_PICKER_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_INTENT_PICKER_BUBBLE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_INTENT_PICKER_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_INTENT_PICKER_BUBBLE_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "chrome/browser/chromeos/arc/intent_helper/arc_navigation_throttle.h" | 14 #include "chrome/browser/chromeos/arc/intent_helper/arc_navigation_throttle.h" |
| 15 #include "chrome/browser/ui/browser_dialogs.h" | 15 #include "chrome/browser/ui/browser_dialogs.h" |
| 16 #include "content/public/browser/web_contents_observer.h" | 16 #include "content/public/browser/web_contents_observer.h" |
| 17 #include "ui/base/accelerators/accelerator.h" | 17 #include "ui/base/accelerators/accelerator.h" |
| 18 #include "ui/gfx/image/image.h" | 18 #include "ui/gfx/image/image.h" |
| 19 #include "ui/views/bubble/bubble_dialog_delegate.h" | 19 #include "ui/views/bubble/bubble_dialog_delegate.h" |
| 20 #include "ui/views/controls/button/button.h" | 20 #include "ui/views/controls/button/button.h" |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class WebContents; | 23 class WebContents; |
| 24 } // namespace content | 24 } // namespace content |
| 25 | 25 |
| 26 namespace views { | 26 namespace views { |
| 27 class Label; | |
| 28 class LabelButton; | |
| 29 class View; | 27 class View; |
| 30 class Widget; | 28 class Widget; |
| 31 } // namespace views | 29 } // namespace views |
| 32 | 30 |
| 33 namespace ui { | 31 namespace ui { |
| 34 class Event; | 32 class Event; |
| 35 } // namespace ui | 33 } // namespace ui |
| 36 | 34 |
| 37 class IntentPickerLabelButton; | 35 class IntentPickerLabelButton; |
| 38 | 36 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 size_t selected_app_tag_ = 0; | 136 size_t selected_app_tag_ = 0; |
| 139 | 137 |
| 140 views::ScrollView* scroll_view_; | 138 views::ScrollView* scroll_view_; |
| 141 | 139 |
| 142 std::vector<AppInfo> app_info_; | 140 std::vector<AppInfo> app_info_; |
| 143 | 141 |
| 144 DISALLOW_COPY_AND_ASSIGN(IntentPickerBubbleView); | 142 DISALLOW_COPY_AND_ASSIGN(IntentPickerBubbleView); |
| 145 }; | 143 }; |
| 146 | 144 |
| 147 #endif // CHROME_BROWSER_UI_VIEWS_INTENT_PICKER_BUBBLE_VIEW_H_ | 145 #endif // CHROME_BROWSER_UI_VIEWS_INTENT_PICKER_BUBBLE_VIEW_H_ |
| OLD | NEW |