Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: content/common/frame_messages.h

Issue 264773002: Start moving WebUserMediaClient on the chromium side to be per frame instead of view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 */)
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698