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

Unified Diff: content/common/media/media_player_messages.h

Issue 12595005: Parsing filesystem url before giving it to media player (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: adding dir check for returned file path Created 7 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
Index: content/common/media/media_player_messages.h
diff --git a/content/common/media/media_player_messages.h b/content/common/media/media_player_messages.h
index 0adbfa4b9afae5c2bc195ae929a8ef49e409a97e..3e30566da5cef2de51ba7eefa62c30b560c2c5b0 100644
--- a/content/common/media/media_player_messages.h
+++ b/content/common/media/media_player_messages.h
@@ -9,6 +9,7 @@
#include "base/time.h"
#include "content/common/content_export.h"
+#include "googleurl/src/gurl.h"
#include "ipc/ipc_message_macros.h"
#undef IPC_MESSAGE_EXPORT
@@ -84,8 +85,8 @@ IPC_MESSAGE_ROUTED0(MediaPlayerHostMsg_DestroyAllMediaPlayers)
// Initialize a media player object with the given player_id.
IPC_MESSAGE_ROUTED3(MediaPlayerHostMsg_MediaPlayerInitialize,
int /* player_id */,
- std::string /* url */,
- std::string /* first_party_for_cookies */)
+ GURL /* url */,
+ GURL /* first_party_for_cookies */)
// Pause the player.
IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerPause,

Powered by Google App Engine
This is Rietveld 408576698