OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/process.h" | 13 #include "base/process.h" |
14 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
15 #include "base/string16.h" | 15 #include "base/string16.h" |
16 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
17 #include "base/values.h" | 17 #include "base/values.h" |
18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
| 19 #include "chrome/common/autocomplete_match_type.h" |
19 #include "chrome/common/common_param_traits.h" | 20 #include "chrome/common/common_param_traits.h" |
20 #include "chrome/common/content_settings.h" | 21 #include "chrome/common/content_settings.h" |
21 #include "chrome/common/content_settings_pattern.h" | 22 #include "chrome/common/content_settings_pattern.h" |
22 #include "chrome/common/instant_types.h" | 23 #include "chrome/common/instant_types.h" |
23 #include "chrome/common/language_detection_details.h" | 24 #include "chrome/common/language_detection_details.h" |
24 #include "chrome/common/nacl_types.h" | 25 #include "chrome/common/nacl_types.h" |
25 #include "chrome/common/omnibox_focus_state.h" | 26 #include "chrome/common/omnibox_focus_state.h" |
26 #include "chrome/common/search_provider.h" | 27 #include "chrome/common/search_provider.h" |
27 #include "chrome/common/search_types.h" | 28 #include "chrome/common/search_types.h" |
28 #include "chrome/common/translate_errors.h" | 29 #include "chrome/common/translate_errors.h" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | 111 static bool Read(const Message* m, PickleIterator* iter, param_type* r); |
111 static void Log(const param_type& p, std::string* l); | 112 static void Log(const param_type& p, std::string* l); |
112 }; | 113 }; |
113 | 114 |
114 } // namespace IPC | 115 } // namespace IPC |
115 | 116 |
116 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 117 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
117 | 118 |
118 #define IPC_MESSAGE_START ChromeMsgStart | 119 #define IPC_MESSAGE_START ChromeMsgStart |
119 | 120 |
| 121 IPC_ENUM_TRAITS(AutocompleteMatchType::Type) |
120 IPC_ENUM_TRAITS(ChromeViewHostMsg_GetPluginInfo_Status::Value) | 122 IPC_ENUM_TRAITS(ChromeViewHostMsg_GetPluginInfo_Status::Value) |
121 IPC_ENUM_TRAITS(InstantCompleteBehavior) | 123 IPC_ENUM_TRAITS(InstantCompleteBehavior) |
122 IPC_ENUM_TRAITS(InstantSizeUnits) | 124 IPC_ENUM_TRAITS(InstantSizeUnits) |
123 IPC_ENUM_TRAITS(InstantSuggestionType) | 125 IPC_ENUM_TRAITS(InstantSuggestionType) |
124 IPC_ENUM_TRAITS(OmniboxFocusState) | 126 IPC_ENUM_TRAITS(OmniboxFocusState) |
125 IPC_ENUM_TRAITS(search_provider::OSDDType) | 127 IPC_ENUM_TRAITS(search_provider::OSDDType) |
126 IPC_ENUM_TRAITS(search_provider::InstallState) | 128 IPC_ENUM_TRAITS(search_provider::InstallState) |
127 IPC_ENUM_TRAITS(ThemeBackgroundImageAlignment) | 129 IPC_ENUM_TRAITS(ThemeBackgroundImageAlignment) |
128 IPC_ENUM_TRAITS(ThemeBackgroundImageTiling) | 130 IPC_ENUM_TRAITS(ThemeBackgroundImageTiling) |
129 IPC_ENUM_TRAITS(TranslateErrors::Type) | 131 IPC_ENUM_TRAITS(TranslateErrors::Type) |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 // previous SetCookie message to be processed. | 762 // previous SetCookie message to be processed. |
761 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 763 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
762 GURL /* url */, | 764 GURL /* url */, |
763 GURL /* first_party_for_cookies */, | 765 GURL /* first_party_for_cookies */, |
764 std::string /* cookies */) | 766 std::string /* cookies */) |
765 | 767 |
766 // Provide the browser process with current renderer framerate. | 768 // Provide the browser process with current renderer framerate. |
767 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 769 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
768 int /* routing id */, | 770 int /* routing id */, |
769 float /* frames per second */) | 771 float /* frames per second */) |
OLD | NEW |