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

Side by Side Diff: content/common/media/cdm_messages.h

Issue 179123009: Encrypted Media: Use uint32 for systemCode in SessionError. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 content decryption module (CDM) implementation. 5 // IPC messages for content decryption module (CDM) implementation.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 uint32_t /* session_id */) 60 uint32_t /* session_id */)
61 61
62 IPC_MESSAGE_ROUTED2(CdmMsg_SessionClosed, 62 IPC_MESSAGE_ROUTED2(CdmMsg_SessionClosed,
63 int /* cdm_id */, 63 int /* cdm_id */,
64 uint32_t /* session_id */) 64 uint32_t /* session_id */)
65 65
66 IPC_MESSAGE_ROUTED4(CdmMsg_SessionError, 66 IPC_MESSAGE_ROUTED4(CdmMsg_SessionError,
67 int /* cdm_id */, 67 int /* cdm_id */,
68 uint32_t /* session_id */, 68 uint32_t /* session_id */,
69 media::MediaKeys::KeyError /* error_code */, 69 media::MediaKeys::KeyError /* error_code */,
70 int /* system_code */) 70 uint32_t /* system_code */)
OLDNEW
« no previous file with comments | « content/browser/media/android/browser_media_player_manager.cc ('k') | content/renderer/media/android/proxy_media_keys.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698