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

Unified Diff: chrome/common/render_messages_params.h

Issue 6717001: Move audio messages to their own file. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/render_messages.cc ('k') | chrome/common/render_messages_params.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_params.h
===================================================================
--- chrome/common/render_messages_params.h (revision 78894)
+++ chrome/common/render_messages_params.h (working copy)
@@ -26,7 +26,6 @@
#include "content/common/serialized_script_value.h"
#include "googleurl/src/gurl.h"
#include "ipc/ipc_param_traits.h"
-#include "media/audio/audio_parameters.h"
#include "net/base/host_port_pair.h"
#include "ui/gfx/rect.h"
#include "ui/gfx/size.h"
@@ -110,28 +109,6 @@
std::string extra_headers;
};
-// Current status of the audio output stream in the browser process. Browser
-// sends information about the current playback state and error to the
-// renderer process using this type.
-struct ViewMsg_AudioStreamState_Params {
- enum State {
- kPlaying,
- kPaused,
- kError
- };
-
- ViewMsg_AudioStreamState_Params()
- : state(kPlaying) {
- }
-
- explicit ViewMsg_AudioStreamState_Params(State s)
- : state(s) {
- }
-
- // Carries the current playback state.
- State state;
-};
-
// The user has completed a find-in-page; this type defines what actions the
// renderer should take next.
struct ViewMsg_StopFinding_Params {
@@ -545,17 +522,6 @@
bool has_visible_overlays;
};
-// Parameters for creating an audio output stream.
-struct ViewHostMsg_Audio_CreateStream_Params {
- ViewHostMsg_Audio_CreateStream_Params();
- ~ViewHostMsg_Audio_CreateStream_Params();
-
- // Parameters for the new audio stream.
- // If |samples_per_packet| is set 0, the audio packet size is selected
- // automatically by the browser process.
- AudioParameters params;
-};
-
// This message is used for supporting popup menus on Mac OS X using native
// Cocoa controls. The renderer sends us this message which we use to populate
// the popup menu.
@@ -866,14 +832,6 @@
};
template <>
-struct ParamTraits<ViewMsg_AudioStreamState_Params> {
- typedef ViewMsg_AudioStreamState_Params param_type;
- static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, void** iter, param_type* p);
- static void Log(const param_type& p, std::string* l);
-};
-
-template <>
struct ParamTraits<ViewMsg_StopFinding_Params> {
typedef ViewMsg_StopFinding_Params param_type;
static void Write(Message* m, const param_type& p);
@@ -962,14 +920,6 @@
};
template <>
-struct ParamTraits<ViewHostMsg_Audio_CreateStream_Params> {
- typedef ViewHostMsg_Audio_CreateStream_Params param_type;
- static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, void** iter, param_type* p);
- static void Log(const param_type& p, std::string* l);
-};
-
-template <>
struct ParamTraits<ViewHostMsg_ShowPopup_Params> {
typedef ViewHostMsg_ShowPopup_Params param_type;
static void Write(Message* m, const param_type& p);
« no previous file with comments | « chrome/common/render_messages.cc ('k') | chrome/common/render_messages_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698