| 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/indexed_db_param_traits.h" | 11 #include "chrome/common/indexed_db_param_traits.h" |
| 12 #include "chrome/common/render_messages_params.h" | 12 #include "chrome/common/render_messages_params.h" |
| 13 #include "chrome/common/thumbnail_score.h" | 13 #include "chrome/common/thumbnail_score.h" |
| 14 #include "gfx/rect.h" | 14 #include "gfx/rect.h" |
| 15 #include "ipc/ipc_channel_handle.h" | 15 #include "ipc/ipc_channel_handle.h" |
| 16 #include "net/base/upload_data.h" | 16 #include "net/base/upload_data.h" |
| 17 #include "net/http/http_response_headers.h" | 17 #include "net/http/http_response_headers.h" |
| 18 #include "third_party/skia/include/core/SkBitmap.h" | 18 #include "third_party/skia/include/core/SkBitmap.h" |
| 19 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" | 19 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" |
| 20 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" | 20 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" |
| 21 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" | 21 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" |
| 22 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" |
| 23 #include "webkit/appcache/appcache_interfaces.h" | 23 #include "webkit/appcache/appcache_interfaces.h" |
| 24 #include "webkit/blob/blob_data.h" |
| 24 #include "webkit/glue/context_menu.h" | 25 #include "webkit/glue/context_menu.h" |
| 25 #include "webkit/glue/form_data.h" | 26 #include "webkit/glue/form_data.h" |
| 26 #include "webkit/glue/form_field.h" | 27 #include "webkit/glue/form_field.h" |
| 27 #include "webkit/glue/password_form_dom_manager.h" | 28 #include "webkit/glue/password_form_dom_manager.h" |
| 28 #include "webkit/glue/password_form.h" | 29 #include "webkit/glue/password_form.h" |
| 29 #include "webkit/glue/webaccessibility.h" | 30 #include "webkit/glue/webaccessibility.h" |
| 30 #include "webkit/glue/webcookie.h" | 31 #include "webkit/glue/webcookie.h" |
| 31 #include "webkit/glue/webcursor.h" | 32 #include "webkit/glue/webcursor.h" |
| 32 #include "webkit/glue/webdropdata.h" | 33 #include "webkit/glue/webdropdata.h" |
| 33 #include "webkit/glue/plugins/webplugin.h" | 34 #include "webkit/glue/plugins/webplugin.h" |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 l->append(", "); | 832 l->append(", "); |
| 832 LogParam(p.location, l); | 833 LogParam(p.location, l); |
| 833 l->append(", "); | 834 l->append(", "); |
| 834 LogParam(p.attributes, l); | 835 LogParam(p.attributes, l); |
| 835 l->append(", "); | 836 l->append(", "); |
| 836 LogParam(p.children, l); | 837 LogParam(p.children, l); |
| 837 l->append(")"); | 838 l->append(")"); |
| 838 } | 839 } |
| 839 | 840 |
| 840 } // namespace IPC | 841 } // namespace IPC |
| OLD | NEW |