| 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" | |
| 10 #include "chrome/common/render_messages_params.h" | 9 #include "chrome/common/render_messages_params.h" |
| 11 #include "chrome/common/thumbnail_score.h" | 10 #include "chrome/common/thumbnail_score.h" |
| 12 #include "chrome/common/web_apps.h" | 11 #include "chrome/common/web_apps.h" |
| 13 #include "content/common/resource_response.h" | 12 #include "content/common/resource_response.h" |
| 14 #include "ipc/ipc_channel_handle.h" | 13 #include "ipc/ipc_channel_handle.h" |
| 15 #include "media/audio/audio_buffers_state.h" | 14 #include "media/audio/audio_buffers_state.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
| 17 #include "third_party/skia/include/core/SkBitmap.h" | 16 #include "third_party/skia/include/core/SkBitmap.h" |
| 18 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
| 19 #include "webkit/appcache/appcache_interfaces.h" | 18 #include "webkit/appcache/appcache_interfaces.h" |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 l->append("("); | 918 l->append("("); |
| 920 LogParam(p.pending_bytes, l); | 919 LogParam(p.pending_bytes, l); |
| 921 l->append(", "); | 920 l->append(", "); |
| 922 LogParam(p.hardware_delay_bytes, l); | 921 LogParam(p.hardware_delay_bytes, l); |
| 923 l->append(", "); | 922 l->append(", "); |
| 924 LogParam(p.timestamp, l); | 923 LogParam(p.timestamp, l); |
| 925 l->append(")"); | 924 l->append(")"); |
| 926 } | 925 } |
| 927 | 926 |
| 928 } // namespace IPC | 927 } // namespace IPC |
| OLD | NEW |