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

Side by Side Diff: components/cdm/browser/cdm_message_filter_android.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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 #ifndef COMPONENTS_CDM_BROWSER_CDM_MESSAGE_FILTER_ANDROID_H_ 5 #ifndef COMPONENTS_CDM_BROWSER_CDM_MESSAGE_FILTER_ANDROID_H_
6 #define COMPONENTS_CDM_BROWSER_CDM_MESSAGE_FILTER_ANDROID_H_ 6 #define COMPONENTS_CDM_BROWSER_CDM_MESSAGE_FILTER_ANDROID_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/macros.h"
9 #include "content/public/browser/browser_message_filter.h" 9 #include "content/public/browser/browser_message_filter.h"
10 10
11 struct SupportedKeySystemRequest; 11 struct SupportedKeySystemRequest;
12 struct SupportedKeySystemResponse; 12 struct SupportedKeySystemResponse;
13 13
14 namespace cdm { 14 namespace cdm {
15 15
16 // Message filter for EME on android. It is responsible for getting the 16 // Message filter for EME on android. It is responsible for getting the
17 // SupportedKeySystems information and passing it back to renderer. 17 // SupportedKeySystems information and passing it back to renderer.
18 class CdmMessageFilterAndroid 18 class CdmMessageFilterAndroid
(...skipping 14 matching lines...) Expand all
33 SupportedKeySystemResponse* response); 33 SupportedKeySystemResponse* response);
34 34
35 void OnGetPlatformKeySystemNames(std::vector<std::string>* key_systems); 35 void OnGetPlatformKeySystemNames(std::vector<std::string>* key_systems);
36 36
37 DISALLOW_COPY_AND_ASSIGN(CdmMessageFilterAndroid); 37 DISALLOW_COPY_AND_ASSIGN(CdmMessageFilterAndroid);
38 }; 38 };
39 39
40 } // namespace cdm 40 } // namespace cdm
41 41
42 #endif // COMPONENTS_CDM_BROWSER_CDM_MESSAGE_FILTER_ANDROID_H_ 42 #endif // COMPONENTS_CDM_BROWSER_CDM_MESSAGE_FILTER_ANDROID_H_
OLDNEW
« no previous file with comments | « components/captive_portal/captive_portal_types.cc ('k') | components/cdm/browser/cdm_message_filter_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698