OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/common/common_param_traits.h" | 5 #include "chrome/common/common_param_traits.h" |
6 | 6 |
7 #define IPC_MESSAGE_IMPL | 7 #define IPC_MESSAGE_IMPL |
8 #include "chrome/common/pepper_file_messages.h" | 8 #include "chrome/common/pepper_file_messages.h" |
9 | 9 |
10 namespace IPC { | 10 namespace IPC { |
11 | 11 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 void ParamTraits<webkit::ppapi::PepperFilePath>::Log(const param_type& p, | 55 void ParamTraits<webkit::ppapi::PepperFilePath>::Log(const param_type& p, |
56 std::string* l) { | 56 std::string* l) { |
57 l->append("("); | 57 l->append("("); |
58 LogParam(static_cast<unsigned>(p.domain()), l); | 58 LogParam(static_cast<unsigned>(p.domain()), l); |
59 l->append(", "); | 59 l->append(", "); |
60 LogParam(p.path(), l); | 60 LogParam(p.path(), l); |
61 l->append(")"); | 61 l->append(")"); |
62 } | 62 } |
63 | 63 |
64 } // namespace IPC | 64 } // namespace IPC |
OLD | NEW |