OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // IPC messages for interacting with frames. | 5 // IPC messages for interacting with frames. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
9 #include "content/common/content_param_traits.h" | 9 #include "content/common/content_param_traits.h" |
10 #include "content/common/frame_message_enums.h" | 10 #include "content/common/frame_message_enums.h" |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 // duplicates of these during a single load. | 415 // duplicates of these during a single load. |
416 // |to_different_document| will be true unless the load is a fragment | 416 // |to_different_document| will be true unless the load is a fragment |
417 // navigation, or triggered by history.pushState/replaceState. | 417 // navigation, or triggered by history.pushState/replaceState. |
418 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, | 418 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, |
419 bool /* to_different_document */) | 419 bool /* to_different_document */) |
420 | 420 |
421 // Sent when the renderer is done loading a page. This corresponds to Blink's | 421 // Sent when the renderer is done loading a page. This corresponds to Blink's |
422 // notion of the throbber stopping. | 422 // notion of the throbber stopping. |
423 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) | 423 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) |
424 | 424 |
| 425 // Sent when the renderer changed the progress of a load. |
| 426 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress, |
| 427 double /* load_progress */) |
| 428 |
425 // Requests that the given URL be opened in the specified manner. | 429 // Requests that the given URL be opened in the specified manner. |
426 IPC_MESSAGE_ROUTED1(FrameHostMsg_OpenURL, FrameHostMsg_OpenURL_Params) | 430 IPC_MESSAGE_ROUTED1(FrameHostMsg_OpenURL, FrameHostMsg_OpenURL_Params) |
427 | 431 |
428 // Notifies the browser that a frame finished loading. | 432 // Notifies the browser that a frame finished loading. |
429 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFinishLoad, | 433 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFinishLoad, |
430 GURL /* validated_url */) | 434 GURL /* validated_url */) |
431 | 435 |
432 // Notifies that the initial empty document of a view has been accessed. | 436 // Notifies that the initial empty document of a view has been accessed. |
433 // After this, it is no longer safe to show a pending navigation's URL without | 437 // After this, it is no longer safe to show a pending navigation's URL without |
434 // making a URL spoof possible. | 438 // making a URL spoof possible. |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 SkColor /* color */, | 574 SkColor /* color */, |
571 std::vector<content::ColorSuggestion> /* suggestions */) | 575 std::vector<content::ColorSuggestion> /* suggestions */) |
572 | 576 |
573 // Asks the browser to end the color chooser. | 577 // Asks the browser to end the color chooser. |
574 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) | 578 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) |
575 | 579 |
576 // Change the selected color in the color chooser. | 580 // Change the selected color in the color chooser. |
577 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, | 581 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, |
578 int /* id */, | 582 int /* id */, |
579 SkColor /* color */) | 583 SkColor /* color */) |
OLD | NEW |