| OLD | NEW |
| 1 // Copyright (c) 2011 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 // This file is used to define IPC::ParamTraits<> specializations for a number | 5 // This file is used to define IPC::ParamTraits<> specializations for a number |
| 6 // of types so that they can be serialized over IPC. IPC::ParamTraits<> | 6 // of types so that they can be serialized over IPC. IPC::ParamTraits<> |
| 7 // specializations for basic types (like int and std::string) and types in the | 7 // specializations for basic types (like int and std::string) and types in the |
| 8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains | 8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains |
| 9 // specializations for types that are used by the content code, and which need | 9 // specializations for types that are used by the content code, and which need |
| 10 // manual serialization code. This is usually because they're not structs with | 10 // manual serialization code. This is usually because they're not structs with |
| 11 // public members.. | 11 // public members.. |
| 12 | 12 |
| 13 #ifndef CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ | 13 #ifndef CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ |
| 14 #define CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ | 14 #define CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ |
| 15 #pragma once | 15 #pragma once |
| 16 | 16 |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/platform_file.h" | 18 #include "base/platform_file.h" |
| 19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
| 20 #include "content/common/dom_storage_common.h" | 20 #include "content/common/dom_storage_common.h" |
| 21 #include "content/public/common/page_transition_types.h" |
| 21 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
| 22 #include "ipc/ipc_message_utils.h" | 23 #include "ipc/ipc_message_utils.h" |
| 23 #include "net/base/ip_endpoint.h" | 24 #include "net/base/ip_endpoint.h" |
| 24 #include "net/url_request/url_request_status.h" | 25 #include "net/url_request/url_request_status.h" |
| 25 #include "ui/gfx/native_widget_types.h" | 26 #include "ui/gfx/native_widget_types.h" |
| 26 #include "ui/gfx/surface/transport_dib.h" | 27 #include "ui/gfx/surface/transport_dib.h" |
| 27 #include "webkit/glue/resource_type.h" | 28 #include "webkit/glue/resource_type.h" |
| 28 | 29 |
| 29 class SkBitmap; | 30 class SkBitmap; |
| 30 | 31 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 template <> | 230 template <> |
| 230 struct SimilarTypeTraits<base::PlatformFileError> { | 231 struct SimilarTypeTraits<base::PlatformFileError> { |
| 231 typedef int Type; | 232 typedef int Type; |
| 232 }; | 233 }; |
| 233 | 234 |
| 234 template <> | 235 template <> |
| 235 struct SimilarTypeTraits<DOMStorageType> { | 236 struct SimilarTypeTraits<DOMStorageType> { |
| 236 typedef int Type; | 237 typedef int Type; |
| 237 }; | 238 }; |
| 238 | 239 |
| 240 template <> |
| 241 struct SimilarTypeTraits<content::PageTransition> { |
| 242 typedef int Type; |
| 243 }; |
| 244 |
| 239 } // namespace IPC | 245 } // namespace IPC |
| 240 | 246 |
| 241 #endif // CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ | 247 #endif // CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ |
| OLD | NEW |