summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webmenuitem.h
blob: ab267bb98a563d8b250812111646fd867b82924b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef WEBMENUITEM_H_
#define WEBMENUITEM_H_

#include "base/string16.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPopupMenuInfo.h"

// Container for information about entries in an HTML select popup menu.
struct WebMenuItem {
  enum Type {
    OPTION    = WebKit::WebPopupMenuInfo::Item::Option,
    GROUP     = WebKit::WebPopupMenuInfo::Item::Group,
    SEPARATOR = WebKit::WebPopupMenuInfo::Item::Separator
  };

  string16 label;
  Type type;
  bool enabled;

  WebMenuItem() : type(OPTION), enabled(false) {
  }

  WebMenuItem(const WebKit::WebPopupMenuInfo::Item& item)
      : label(item.label),
        type(static_cast<Type>(item.type)),
        enabled(item.enabled) {
  }
};

#endif  // WEBMENUITEM_H_