| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSHARE_WEBSHARE_TARGET_PICKER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_WEBSHARE_WEBSHARE_TARGET_PICKER_VIEW_H_ |
| 7 |
| 8 #include <vector> |
| 9 |
| 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
| 12 #include "base/strings/string16.h" |
| 13 #include "chrome/browser/ui/browser_dialogs.h" |
| 14 #include "ui/base/models/table_model.h" |
| 15 #include "ui/base/ui_base_types.h" |
| 16 #include "ui/views/window/dialog_delegate.h" |
| 17 |
| 18 // Dialog that presents the user with a list of share target apps. Allows the |
| 19 // user to pick one target to be opened and have data passed to it. |
| 20 // |
| 21 // NOTE: This dialog has *not* been UI-reviewed, and is being used by an |
| 22 // in-development feature (Web Share) behind a runtime flag. It should not be |
| 23 // used by any released code until going through UI review. |
| 24 class WebShareTargetPickerView : public views::DialogDelegateView, |
| 25 public ui::TableModel { |
| 26 public: |
| 27 // |targets| is a list of app titles that will be shown in a list. Calls |
| 28 // |close_callback| with SHARE if an app was chosen, or CANCEL if the dialog |
| 29 // was cancelled. |
| 30 WebShareTargetPickerView( |
| 31 const std::vector<base::string16>& targets, |
| 32 const base::Callback<void(SharePickerResult)>& close_callback); |
| 33 ~WebShareTargetPickerView() override; |
| 34 |
| 35 // views::View overrides: |
| 36 gfx::Size GetPreferredSize() const override; |
| 37 |
| 38 // views::WidgetDelegate overrides: |
| 39 ui::ModalType GetModalType() const override; |
| 40 base::string16 GetWindowTitle() const override; |
| 41 |
| 42 // views::DialogDelegate overrides: |
| 43 bool Cancel() override; |
| 44 bool Accept() override; |
| 45 base::string16 GetDialogButtonLabel(ui::DialogButton button) const override; |
| 46 |
| 47 // ui::TableModel overrides: |
| 48 int RowCount() override; |
| 49 base::string16 GetText(int row, int column_id) override; |
| 50 void SetObserver(ui::TableModelObserver* observer) override; |
| 51 |
| 52 private: |
| 53 const std::vector<base::string16> targets_; |
| 54 |
| 55 base::Callback<void(SharePickerResult)> close_callback_; |
| 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(WebShareTargetPickerView); |
| 58 }; |
| 59 |
| 60 #endif // CHROME_BROWSER_UI_VIEWS_WEBSHARE_WEBSHARE_TARGET_PICKER_VIEW_H_ |
| OLD | NEW |