ecaa016016392760c78212afe50c2461359cc64a
[platform/framework/web/crosswalk-tizen.git] /
1 // Copyright 2016 Samsung Electronics. 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 EWK_EFL_INTEGRATION_BROWSER_SELECT_PICKER_SELECT_PICKER_WEARABLE_H_
6 #define EWK_EFL_INTEGRATION_BROWSER_SELECT_PICKER_SELECT_PICKER_WEARABLE_H_
7
8 #include "browser/select_picker/select_picker_base.h"
9
10 class SelectPickerEflWearable : public SelectPickerBase {
11  public:
12   explicit SelectPickerEflWearable(EWebView* web_view,
13                            int selected_index,
14                            bool is_multiple_selection);
15   ~SelectPickerEflWearable() override;
16
17  protected:
18   void Init(const std::vector<content::MenuItem>& items,
19             const gfx::Rect& bounds) override;
20   void CreateAndPopulatePopupList(
21       const std::vector<content::MenuItem>& items) override;
22 };
23
24 #endif  // EWK_EFL_INTEGRATION_BROWSER_SELECT_PICKER_SELECT_PICKER_WEARABLE_H_