Chromium Code Reviews| 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 // 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, or because the same type is being used in multiple | 11 // public members, or because the same type is being used in multiple |
| 12 // *_messages.h headers. | 12 // *_messages.h headers. |
| 13 | 13 |
| 14 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ | 14 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ |
| 15 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ | 15 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ |
| 16 #pragma once | 16 #pragma once |
| 17 | 17 |
| 18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
| 20 #include "content/public/common/console_message_level.h" | |
| 21 #include "content/public/common/page_transition_types.h" | 20 #include "content/public/common/page_transition_types.h" |
| 22 #include "content/public/common/security_style.h" | 21 #include "content/public/common/security_style.h" |
| 23 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
| 24 #include "ipc/ipc_message_utils.h" | 23 #include "ipc/ipc_message_utils.h" |
| 25 #include "net/base/ip_endpoint.h" | 24 #include "net/base/ip_endpoint.h" |
| 26 #include "net/url_request/url_request_status.h" | 25 #include "net/url_request/url_request_status.h" |
| 27 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h " | 26 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h " |
| 28 #include "ui/gfx/native_widget_types.h" | 27 #include "ui/gfx/native_widget_types.h" |
| 29 #include "ui/surface/transport_dib.h" | 28 #include "ui/surface/transport_dib.h" |
| 30 #include "webkit/glue/resource_type.h" | 29 #include "webkit/glue/resource_type.h" |
| 31 | 30 |
| 31 // Explicitly guarded include of _defs.h files in header files. | |
|
jam
2012/06/20 21:55:48
even though I see why, it's odd reading that ifdef
| |
| 32 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_DEFS_H_ | |
| 33 #include "content/public/common/common_param_traits_defs.h" | |
| 34 #endif | |
| 35 | |
| 32 class SkBitmap; | 36 class SkBitmap; |
| 33 | 37 |
| 34 namespace content { | 38 namespace content { |
| 35 struct Referrer; | 39 struct Referrer; |
| 36 } | 40 } |
| 37 | 41 |
| 38 namespace gfx { | 42 namespace gfx { |
| 39 class Point; | 43 class Point; |
| 40 class Rect; | 44 class Rect; |
| 41 class Size; | 45 class Size; |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 241 template <> | 245 template <> |
| 242 struct SimilarTypeTraits<content::PageTransition> { | 246 struct SimilarTypeTraits<content::PageTransition> { |
| 243 typedef int Type; | 247 typedef int Type; |
| 244 }; | 248 }; |
| 245 | 249 |
| 246 template <> | 250 template <> |
| 247 struct SimilarTypeTraits<content::SecurityStyle> { | 251 struct SimilarTypeTraits<content::SecurityStyle> { |
| 248 typedef int Type; | 252 typedef int Type; |
| 249 }; | 253 }; |
| 250 | 254 |
| 251 template<> | |
| 252 struct CONTENT_EXPORT ParamTraits<content::ConsoleMessageLevel> { | |
| 253 typedef content::ConsoleMessageLevel param_type; | |
| 254 static void Write(Message* m, const param_type& p); | |
| 255 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | |
| 256 static void Log(const param_type& p, std::string* l); | |
| 257 }; | |
| 258 | |
| 259 } // namespace IPC | 255 } // namespace IPC |
| 260 | 256 |
| 261 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ | 257 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ |
| OLD | NEW |