OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "base/file_util.h" | |
6 #include "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
| 6 #include "base/files/file_util.h" |
7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
9 #include "mojo/public/cpp/bindings/lib/message_builder.h" | 9 #include "mojo/public/cpp/bindings/lib/message_builder.h" |
10 #include "mojo/public/cpp/bindings/lib/message_internal.h" | 10 #include "mojo/public/cpp/bindings/lib/message_internal.h" |
11 #include "mojo/public/cpp/bindings/message.h" | 11 #include "mojo/public/cpp/bindings/message.h" |
12 | 12 |
13 // This file is used to generate various files corresponding to mojo | 13 // This file is used to generate various files corresponding to mojo |
14 // messages. The various binding implementations can parse these to verify they | 14 // messages. The various binding implementations can parse these to verify they |
15 // correctly decode messages. | 15 // correctly decode messages. |
16 // | 16 // |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 base::FilePath(FILE_PATH_LITERAL("message_data"))); | 54 base::FilePath(FILE_PATH_LITERAL("message_data"))); |
55 } | 55 } |
56 | 56 |
57 } // namespace | 57 } // namespace |
58 } // namespace mojo | 58 } // namespace mojo |
59 | 59 |
60 int main(int argc, char** argv) { | 60 int main(int argc, char** argv) { |
61 mojo::GenerateMessageDataMessage(); | 61 mojo::GenerateMessageDataMessage(); |
62 return 0; | 62 return 0; |
63 } | 63 } |
OLD | NEW |