OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 #include <map> | 10 #include <map> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/gfx/native_widget_types.h" | 13 #include "base/gfx/native_widget_types.h" |
14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
15 #include "base/shared_memory.h" | 15 #include "base/shared_memory.h" |
16 #include "chrome/browser/renderer_host/resource_handler.h" | 16 #include "chrome/browser/renderer_host/resource_handler.h" |
| 17 #include "chrome/common/common_param_traits.h" |
17 #include "chrome/common/filter_policy.h" | 18 #include "chrome/common/filter_policy.h" |
18 #include "chrome/common/ipc_message_utils.h" | |
19 #include "chrome/common/modal_dialog_event.h" | 19 #include "chrome/common/modal_dialog_event.h" |
20 #include "chrome/common/page_transition_types.h" | 20 #include "chrome/common/page_transition_types.h" |
21 #include "chrome/common/renderer_preferences.h" | 21 #include "chrome/common/renderer_preferences.h" |
22 #include "chrome/common/transport_dib.h" | 22 #include "chrome/common/transport_dib.h" |
23 #include "chrome/common/webkit_param_traits.h" | 23 #include "chrome/common/webkit_param_traits.h" |
24 #include "googleurl/src/gurl.h" | 24 #include "googleurl/src/gurl.h" |
| 25 #include "ipc/ipc_message_utils.h" |
25 #include "media/audio/audio_output.h" | 26 #include "media/audio/audio_output.h" |
26 #include "net/base/upload_data.h" | 27 #include "net/base/upload_data.h" |
27 #include "net/http/http_response_headers.h" | 28 #include "net/http/http_response_headers.h" |
28 #include "webkit/glue/autofill_form.h" | 29 #include "webkit/glue/autofill_form.h" |
29 #include "webkit/glue/context_menu.h" | 30 #include "webkit/glue/context_menu.h" |
30 #include "webkit/glue/form_data.h" | 31 #include "webkit/glue/form_data.h" |
31 #include "webkit/glue/password_form.h" | 32 #include "webkit/glue/password_form.h" |
32 #include "webkit/glue/password_form_dom_manager.h" | 33 #include "webkit/glue/password_form_dom_manager.h" |
33 #include "webkit/glue/resource_loader_bridge.h" | 34 #include "webkit/glue/resource_loader_bridge.h" |
34 #include "webkit/glue/webaccessibility.h" | 35 #include "webkit/glue/webaccessibility.h" |
(...skipping 1907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1942 LogParam(p.has_selection, l); | 1943 LogParam(p.has_selection, l); |
1943 l->append(L")"); | 1944 l->append(L")"); |
1944 } | 1945 } |
1945 }; | 1946 }; |
1946 | 1947 |
1947 | 1948 |
1948 } // namespace IPC | 1949 } // namespace IPC |
1949 | 1950 |
1950 | 1951 |
1951 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" | 1952 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" |
1952 #include "chrome/common/ipc_message_macros.h" | 1953 #include "ipc/ipc_message_macros.h" |
1953 | 1954 |
1954 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 1955 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |