| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/render_messages.h" | 5 #include "chrome/common/render_messages.h" |
| 6 | 6 |
| 7 #include "base/values.h" | 7 #include "base/values.h" |
| 8 #include "chrome/common/edit_command.h" | 8 #include "chrome/common/edit_command.h" |
| 9 #include "chrome/common/extensions/extension_extent.h" | 9 #include "chrome/common/extensions/extension_extent.h" |
| 10 #include "chrome/common/extensions/url_pattern.h" | 10 #include "chrome/common/extensions/url_pattern.h" |
| 11 #include "chrome/common/gpu_param_traits.h" | 11 #include "chrome/common/gpu_param_traits.h" |
| 12 #include "chrome/common/indexed_db_key.h" |
| 12 #include "chrome/common/indexed_db_param_traits.h" | 13 #include "chrome/common/indexed_db_param_traits.h" |
| 13 #include "chrome/common/render_messages_params.h" | 14 #include "chrome/common/render_messages_params.h" |
| 15 #include "chrome/common/serialized_script_value.h" |
| 14 #include "chrome/common/thumbnail_score.h" | 16 #include "chrome/common/thumbnail_score.h" |
| 15 #include "gfx/rect.h" | 17 #include "gfx/rect.h" |
| 16 #include "ipc/ipc_channel_handle.h" | 18 #include "ipc/ipc_channel_handle.h" |
| 17 #include "net/base/upload_data.h" | 19 #include "net/base/upload_data.h" |
| 18 #include "net/http/http_response_headers.h" | 20 #include "net/http/http_response_headers.h" |
| 19 #include "third_party/skia/include/core/SkBitmap.h" | 21 #include "third_party/skia/include/core/SkBitmap.h" |
| 20 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" |
| 21 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" | 23 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" |
| 22 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" | 24 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" |
| 23 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" | 25 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 l->append(", "); | 839 l->append(", "); |
| 838 LogParam(p.attributes, l); | 840 LogParam(p.attributes, l); |
| 839 l->append(", "); | 841 l->append(", "); |
| 840 LogParam(p.children, l); | 842 LogParam(p.children, l); |
| 841 l->append(", "); | 843 l->append(", "); |
| 842 LogParam(p.html_attributes, l); | 844 LogParam(p.html_attributes, l); |
| 843 l->append(")"); | 845 l->append(")"); |
| 844 } | 846 } |
| 845 | 847 |
| 846 } // namespace IPC | 848 } // namespace IPC |
| OLD | NEW |