Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: mojo/public/interfaces/bindings/tests/test_constants.mojom

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 [JavaPackage="org.chromium.mojo.bindings.test.mojom.test_constants"] 5 [JavaPackage="org.chromium.mojo.bindings.test.mojom.test_constants"]
6 module mojo.test; 6 module mojo.test;
7 7
8 // Integral types. 8 // Integral types.
9 const bool kBoolValue = true; 9 const bool kBoolValue = true;
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 struct StructWithConstants { 45 struct StructWithConstants {
46 const int8 kInt8Value = 5; 46 const int8 kInt8Value = 5;
47 const float kFloatValue = 765.432; 47 const float kFloatValue = 765.432;
48 }; 48 };
49 49
50 interface InterfaceWithConstants { 50 interface InterfaceWithConstants {
51 const uint32 kUint32Value = 20100722; 51 const uint32 kUint32Value = 20100722;
52 const double kDoubleValue = 12.34567; 52 const double kDoubleValue = 12.34567;
53 }; 53 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698