| 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" | 5 #include "base/values.h" |
| 6 #include "chrome/common/edit_command.h" | 6 #include "chrome/common/edit_command.h" |
| 7 #include "chrome/common/extensions/extension_extent.h" | 7 #include "chrome/common/extensions/extension_extent.h" |
| 8 #include "chrome/common/extensions/url_pattern.h" | 8 #include "chrome/common/extensions/url_pattern.h" |
| 9 #include "chrome/common/gpu_param_traits.h" | 9 #include "chrome/common/gpu_param_traits.h" |
| 10 #include "chrome/common/render_messages_params.h" | 10 #include "chrome/common/render_messages_params.h" |
| 11 #include "chrome/common/resource_response.h" | 11 #include "chrome/common/resource_response.h" |
| 12 #include "chrome/common/thumbnail_score.h" | 12 #include "chrome/common/thumbnail_score.h" |
| 13 #include "chrome/common/web_apps.h" | 13 #include "chrome/common/web_apps.h" |
| 14 #include "gfx/rect.h" | |
| 15 #include "ipc/ipc_channel_handle.h" | 14 #include "ipc/ipc_channel_handle.h" |
| 16 #include "media/audio/audio_buffers_state.h" | 15 #include "media/audio/audio_buffers_state.h" |
| 17 #include "net/base/upload_data.h" | 16 #include "net/base/upload_data.h" |
| 18 #include "net/http/http_response_headers.h" | 17 #include "net/http/http_response_headers.h" |
| 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
| 20 #include "third_party/skia/include/core/SkBitmap.h" | 19 #include "third_party/skia/include/core/SkBitmap.h" |
| 20 #include "ui/gfx/rect.h" |
| 21 #include "webkit/appcache/appcache_interfaces.h" | 21 #include "webkit/appcache/appcache_interfaces.h" |
| 22 #include "webkit/blob/blob_data.h" | 22 #include "webkit/blob/blob_data.h" |
| 23 #include "webkit/glue/resource_loader_bridge.h" | 23 #include "webkit/glue/resource_loader_bridge.h" |
| 24 #include "webkit/glue/webaccessibility.h" | 24 #include "webkit/glue/webaccessibility.h" |
| 25 #include "webkit/glue/webcookie.h" | 25 #include "webkit/glue/webcookie.h" |
| 26 #include "webkit/glue/webcursor.h" | 26 #include "webkit/glue/webcursor.h" |
| 27 #include "webkit/glue/webmenuitem.h" | 27 #include "webkit/glue/webmenuitem.h" |
| 28 #include "webkit/plugins/npapi/webplugin.h" | 28 #include "webkit/plugins/npapi/webplugin.h" |
| 29 | 29 |
| 30 #if defined(OS_MACOSX) | 30 #if defined(OS_MACOSX) |
| (...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1160 l->append("("); | 1160 l->append("("); |
| 1161 LogParam(p.pending_bytes, l); | 1161 LogParam(p.pending_bytes, l); |
| 1162 l->append(", "); | 1162 l->append(", "); |
| 1163 LogParam(p.hardware_delay_bytes, l); | 1163 LogParam(p.hardware_delay_bytes, l); |
| 1164 l->append(", "); | 1164 l->append(", "); |
| 1165 LogParam(p.timestamp, l); | 1165 LogParam(p.timestamp, l); |
| 1166 l->append(")"); | 1166 l->append(")"); |
| 1167 } | 1167 } |
| 1168 | 1168 |
| 1169 } // namespace IPC | 1169 } // namespace IPC |
| OLD | NEW |