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

Side by Side Diff: tests/service_tests/conformance/conformance_service.idl

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 months 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 (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 service ConformanceService { 5 service ConformanceService {
6 int32 getAge(Person* person); 6 int32 getAge(Person* person);
7 int32 getBoxedAge(PersonBox* box); 7 int32 getBoxedAge(PersonBox* box);
8 AgeStats* getAgeStats(Person* person); 8 AgeStats* getAgeStats(Person* person);
9 AgeStats* createAgeStats(int32 averageAge, int32 sum); 9 AgeStats* createAgeStats(int32 averageAge, int32 sum);
10 Person* createPerson(int32 children); 10 Person* createPerson(int32 children);
11 Node* createNode(int32 depth); 11 Node* createNode(int32 depth);
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 63
64 struct TableFlip { 64 struct TableFlip {
65 String flip; 65 String flip;
66 } 66 }
67 67
68 struct InternalFields { 68 struct InternalFields {
69 int32 offset; 69 int32 offset;
70 String segment; 70 String segment;
71 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698