| 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 #include "base/values.h" | |
| 6 #include "chrome/common/edit_command.h" | |
| 7 #include "chrome/common/extensions/extension_extent.h" | |
| 8 #include "chrome/common/extensions/url_pattern.h" | |
| 9 #include "chrome/common/gpu_param_traits.h" | |
| 10 #include "chrome/common/render_messages_params.h" | |
| 11 #include "chrome/common/thumbnail_score.h" | |
| 12 #include "chrome/common/web_apps.h" | |
| 13 #include "content/common/resource_response.h" | |
| 14 #include "ipc/ipc_channel_handle.h" | |
| 15 #include "media/audio/audio_buffers_state.h" | |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | |
| 17 #include "third_party/skia/include/core/SkBitmap.h" | |
| 18 #include "ui/gfx/rect.h" | |
| 19 #include "webkit/appcache/appcache_interfaces.h" | |
| 20 #include "webkit/blob/blob_data.h" | |
| 21 #include "webkit/glue/webaccessibility.h" | |
| 22 #include "webkit/glue/webcookie.h" | |
| 23 #include "webkit/glue/webcursor.h" | |
| 24 #include "webkit/glue/webmenuitem.h" | |
| 25 #include "webkit/plugins/npapi/webplugin.h" | |
| 26 | |
| 27 #if defined(OS_MACOSX) | |
| 28 #include "chrome/common/font_descriptor_mac.h" | |
| 29 #endif | |
| 30 | |
| 31 #define IPC_MESSAGE_IMPL | |
| 32 #include "chrome/common/render_messages.h" | 5 #include "chrome/common/render_messages.h" |
| 33 | 6 |
| 34 namespace IPC { | 7 namespace IPC { |
| 35 | 8 |
| 36 template<> | 9 template<> |
| 37 struct ParamTraits<WebMenuItem::Type> { | 10 struct ParamTraits<WebMenuItem::Type> { |
| 38 typedef WebMenuItem::Type param_type; | 11 typedef WebMenuItem::Type param_type; |
| 39 static void Write(Message* m, const param_type& p) { | 12 static void Write(Message* m, const param_type& p) { |
| 40 m->WriteInt(p); | 13 m->WriteInt(p); |
| 41 } | 14 } |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 l->append("("); | 890 l->append("("); |
| 918 LogParam(p.pending_bytes, l); | 891 LogParam(p.pending_bytes, l); |
| 919 l->append(", "); | 892 l->append(", "); |
| 920 LogParam(p.hardware_delay_bytes, l); | 893 LogParam(p.hardware_delay_bytes, l); |
| 921 l->append(", "); | 894 l->append(", "); |
| 922 LogParam(p.timestamp, l); | 895 LogParam(p.timestamp, l); |
| 923 l->append(")"); | 896 l->append(")"); |
| 924 } | 897 } |
| 925 | 898 |
| 926 } // namespace IPC | 899 } // namespace IPC |
| OLD | NEW |