OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 5 |
6 // Get basic type definitions. | 6 // Get basic type definitions. |
7 #define IPC_MESSAGE_IMPL | 7 #define IPC_MESSAGE_IMPL |
8 #include "ppapi/proxy/pepper_file_messages.h" | 8 #include "ppapi/proxy/pepper_file_messages.h" |
9 | 9 |
10 // Generate constructors. | 10 // Generate constructors. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 void ParamTraits<ppapi::PepperFilePath>::Log(const param_type& p, | 59 void ParamTraits<ppapi::PepperFilePath>::Log(const param_type& p, |
60 std::string* l) { | 60 std::string* l) { |
61 l->append("("); | 61 l->append("("); |
62 LogParam(static_cast<unsigned>(p.domain()), l); | 62 LogParam(static_cast<unsigned>(p.domain()), l); |
63 l->append(", "); | 63 l->append(", "); |
64 LogParam(p.path(), l); | 64 LogParam(p.path(), l); |
65 l->append(")"); | 65 l->append(")"); |
66 } | 66 } |
67 | 67 |
68 } // namespace IPC | 68 } // namespace IPC |
OLD | NEW |