OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_COMMON_UTILITY_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_UTILITY_MESSAGES_H_ |
6 #define CHROME_COMMON_UTILITY_MESSAGES_H_ | 6 #define CHROME_COMMON_UTILITY_MESSAGES_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 l->append("("); | 64 l->append("("); |
65 LogParam(p.list, l); | 65 LogParam(p.list, l); |
66 l->append(", "); | 66 l->append(", "); |
67 LogParam(p.daystart_elapsed_seconds, l); | 67 LogParam(p.daystart_elapsed_seconds, l); |
68 l->append(")"); | 68 l->append(")"); |
69 } | 69 } |
70 }; | 70 }; |
71 | 71 |
72 } // namespace IPC | 72 } // namespace IPC |
73 | 73 |
74 #define MESSAGES_INTERNAL_FILE "chrome/common/utility_messages_internal.h" | 74 #include "chrome/common/utility_messages_internal.h" |
75 #include "ipc/ipc_message_macros.h" | |
76 | 75 |
77 #endif // CHROME_COMMON_UTILITY_MESSAGES_H_ | 76 #endif // CHROME_COMMON_UTILITY_MESSAGES_H_ |
OLD | NEW |