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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 27 matching lines...) Expand all Loading... |
38 #endif | 38 #endif |
39 | 39 |
40 // TODO(mpcomplete): rename ViewMsg and ViewHostMsg to something that makes | 40 // TODO(mpcomplete): rename ViewMsg and ViewHostMsg to something that makes |
41 // more sense with our current design. | 41 // more sense with our current design. |
42 | 42 |
43 // IPC_MESSAGE macros choke on extra , in the std::map, when expanding. We need | 43 // IPC_MESSAGE macros choke on extra , in the std::map, when expanding. We need |
44 // to typedef it to avoid that. | 44 // to typedef it to avoid that. |
45 // Substitution map for l10n messages. | 45 // Substitution map for l10n messages. |
46 typedef std::map<std::string, std::string> SubstitutionMap; | 46 typedef std::map<std::string, std::string> SubstitutionMap; |
47 | 47 |
| 48 class Value; |
48 class GPUInfo; | 49 class GPUInfo; |
49 class SerializedScriptValue; | 50 class SerializedScriptValue; |
50 class SkBitmap; | 51 class SkBitmap; |
51 struct ThumbnailScore; | 52 struct ThumbnailScore; |
52 class WebCursor; | 53 class WebCursor; |
53 | 54 |
54 namespace gfx { | 55 namespace gfx { |
55 class Rect; | 56 class Rect; |
56 } | 57 } |
57 | 58 |
(...skipping 2963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3021 | 3022 |
3022 // Client-Side Phishing Detector --------------------------------------------- | 3023 // Client-Side Phishing Detector --------------------------------------------- |
3023 // Inform the browser that the current URL is phishing according to the | 3024 // Inform the browser that the current URL is phishing according to the |
3024 // client-side phishing detector. | 3025 // client-side phishing detector. |
3025 IPC_MESSAGE_ROUTED3(ViewHostMsg_DetectedPhishingSite, | 3026 IPC_MESSAGE_ROUTED3(ViewHostMsg_DetectedPhishingSite, |
3026 GURL /* phishing_url */, | 3027 GURL /* phishing_url */, |
3027 double /* phishing_score */, | 3028 double /* phishing_score */, |
3028 SkBitmap /* thumbnail */) | 3029 SkBitmap /* thumbnail */) |
3029 | 3030 |
3030 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied | 3031 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied |
3031 // to ViewMsg_ScriptEvalRequest. The result is true if the script evaluated | 3032 // to ViewMsg_ScriptEvalRequest. The result has the value returned by the |
3032 // to the boolean result true, false otherwise. | 3033 // script as it's only element, one of Null, Boolean, Integer, Real, or |
| 3034 // String. |
3033 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, | 3035 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, |
3034 int /* id */, | 3036 int /* id */, |
3035 bool /* result */) | 3037 ListValue /* result */) |
3036 | 3038 |
3037 // Updates the content restrictions, i.e. to disable print/copy. | 3039 // Updates the content restrictions, i.e. to disable print/copy. |
3038 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateContentRestrictions, | 3040 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateContentRestrictions, |
3039 int /* restrictions */) | 3041 int /* restrictions */) |
3040 | 3042 |
3041 // Trusted Pepper Filesystem messages ---------------------------------------- | 3043 // Trusted Pepper Filesystem messages ---------------------------------------- |
3042 | 3044 |
3043 // Open the file. | 3045 // Open the file. |
3044 IPC_SYNC_MESSAGE_CONTROL2_2(ViewHostMsg_PepperOpenFile, | 3046 IPC_SYNC_MESSAGE_CONTROL2_2(ViewHostMsg_PepperOpenFile, |
3045 FilePath /* path */, | 3047 FilePath /* path */, |
(...skipping 24 matching lines...) Expand all Loading... |
3070 base::PlatformFileInfo, /* info */ | 3072 base::PlatformFileInfo, /* info */ |
3071 base::PlatformFileError /* error_code */) | 3073 base::PlatformFileError /* error_code */) |
3072 | 3074 |
3073 // Get the directory's contents. | 3075 // Get the directory's contents. |
3074 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 3076 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
3075 FilePath /* path */, | 3077 FilePath /* path */, |
3076 PepperDirContents, /* contents */ | 3078 PepperDirContents, /* contents */ |
3077 base::PlatformFileError /* error_code */) | 3079 base::PlatformFileError /* error_code */) |
3078 | 3080 |
3079 IPC_END_MESSAGES(ViewHost) | 3081 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |