| OLD | NEW |
| 1 // Copyright (c) 2009 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 #include <vector> | |
| 11 | 10 |
| 12 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 13 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 14 #include "base/values.h" | 13 #include "base/values.h" |
| 15 #include "chrome/common/common_param_traits.h" | 14 #include "chrome/common/common_param_traits.h" |
| 16 #include "chrome/common/extensions/update_manifest.h" | 15 #include "chrome/common/extensions/update_manifest.h" |
| 17 #include "ipc/ipc_message_utils.h" | 16 #include "ipc/ipc_message_utils.h" |
| 18 | 17 |
| 19 namespace IPC { | 18 namespace IPC { |
| 20 | 19 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 l->append(L")"); | 69 l->append(L")"); |
| 71 } | 70 } |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace IPC | 73 } // namespace IPC |
| 75 | 74 |
| 76 #define MESSAGES_INTERNAL_FILE "chrome/common/utility_messages_internal.h" | 75 #define MESSAGES_INTERNAL_FILE "chrome/common/utility_messages_internal.h" |
| 77 #include "ipc/ipc_message_macros.h" | 76 #include "ipc/ipc_message_macros.h" |
| 78 | 77 |
| 79 #endif // CHROME_COMMON_UTILITY_MESSAGES_H_ | 78 #endif // CHROME_COMMON_UTILITY_MESSAGES_H_ |
| OLD | NEW |