| 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 <stdint.h> | 6 #include <stdint.h> |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 content::TopControlsState /* current */, | 332 content::TopControlsState /* current */, |
| 333 bool /* animate */) | 333 bool /* animate */) |
| 334 | 334 |
| 335 | 335 |
| 336 // Updates the window features of the render view. | 336 // Updates the window features of the render view. |
| 337 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetWindowFeatures, | 337 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetWindowFeatures, |
| 338 blink::WebWindowFeatures /* window_features */) | 338 blink::WebWindowFeatures /* window_features */) |
| 339 | 339 |
| 340 // Responds to the request for a thumbnail. | 340 // Responds to the request for a thumbnail. |
| 341 // Thumbnail data will be empty is a thumbnail could not be produced. | 341 // Thumbnail data will be empty is a thumbnail could not be produced. |
| 342 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_RequestThumbnailForContextNode_ACK, | 342 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_RequestThumbnailForContextNode_ACK, |
| 343 std::string /* JPEG-encoded thumbnail data */, | 343 std::string /* thumbnail data */, |
| 344 std::string /* format of the thumbnail data */, |
| 344 gfx::Size /* original size of the image */) | 345 gfx::Size /* original size of the image */) |
| 345 | 346 |
| 346 // Requests application info for the page. The renderer responds back with | 347 // Requests application info for the page. The renderer responds back with |
| 347 // ChromeViewHostMsg_DidGetWebApplicationInfo. | 348 // ChromeViewHostMsg_DidGetWebApplicationInfo. |
| 348 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetWebApplicationInfo) | 349 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetWebApplicationInfo) |
| 349 | 350 |
| 350 #if defined(OS_ANDROID) | 351 #if defined(OS_ANDROID) |
| 351 // Asks the renderer to return information about the given meta tag. | 352 // Asks the renderer to return information about the given meta tag. |
| 352 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RetrieveMetaTagContent, | 353 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RetrieveMetaTagContent, |
| 353 GURL /* expected_url */, | 354 GURL /* expected_url */, |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 | 662 |
| 662 #if defined(ENABLE_PLUGINS) | 663 #if defined(ENABLE_PLUGINS) |
| 663 // Sent by the renderer to check if crash reporting is enabled. | 664 // Sent by the renderer to check if crash reporting is enabled. |
| 664 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 665 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 665 bool /* enabled */) | 666 bool /* enabled */) |
| 666 #endif | 667 #endif |
| 667 | 668 |
| 668 // Sent by the renderer to indicate that a fields trial has been activated. | 669 // Sent by the renderer to indicate that a fields trial has been activated. |
| 669 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 670 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
| 670 std::string /* name */) | 671 std::string /* name */) |
| OLD | NEW |