aboutsummaryrefslogtreecommitdiff
path: root/mojo/common/values.mojom
blob: 722198c56ac51d45c444576d55b4d0346e9a1d0b (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
// Copyright 2016 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.

module mojo.common.mojom;

union Value {
  NullValue? null_value;
  bool bool_value;
  int32 int_value;
  double double_value;
  string string_value;
  array<uint8> binary_value;
  DictionaryValue dictionary_value;
  ListValue list_value;
};

struct ListValue {
  array<Value> values;
};

struct DictionaryValue {
  map<string, Value> values;
};

// An empty struct representing a null base::Value.
struct NullValue {
};

// To avoid versioning problems for arc. TODO(sammc): Remove ASAP.
[Native]
struct LegacyListValue;