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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 SkColor /* color */, | 570 SkColor /* color */, |
571 std::vector<content::ColorSuggestion> /* suggestions */) | 571 std::vector<content::ColorSuggestion> /* suggestions */) |
572 | 572 |
573 // Asks the browser to end the color chooser. | 573 // Asks the browser to end the color chooser. |
574 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) | 574 IPC_MESSAGE_ROUTED1(FrameHostMsg_EndColorChooser, int /* id */) |
575 | 575 |
576 // Change the selected color in the color chooser. | 576 // Change the selected color in the color chooser. |
577 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, | 577 IPC_MESSAGE_ROUTED2(FrameHostMsg_SetSelectedColorInColorChooser, |
578 int /* id */, | 578 int /* id */, |
579 SkColor /* color */) | 579 SkColor /* color */) |
| 580 |
| 581 // Notifies the browser that media has started/stopped playing. |
| 582 IPC_MESSAGE_ROUTED3(FrameHostMsg_MediaPlayingNotification, |
| 583 int64 /* player_cookie, distinguishes instances */, |
| 584 bool /* has_video */, |
| 585 bool /* has_audio */) |
| 586 |
| 587 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification, |
| 588 int64 /* player_cookie, distinguishes instances */) |
OLD | NEW |