| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 MEDIA_BASE_PROVISION_FETCHER_H | 5 #ifndef MEDIA_BASE_ANDROID_PROVISION_FETCHER_H_ |
| 6 #define MEDIA_BASE_PROVISION_FETCHER_H | 6 #define MEDIA_BASE_ANDROID_PROVISION_FETCHER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "media/base/media_export.h" | 12 #include "media/base/media_export.h" |
| 13 | 13 |
| 14 namespace media { | 14 namespace media { |
| 15 | 15 |
| 16 // The interface to retrieve provision information for MediaDrmBridge. | 16 // The interface to retrieve provision information for MediaDrmBridge. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 32 // thread that this method is called. | 32 // thread that this method is called. |
| 33 virtual void Retrieve(const std::string& default_url, | 33 virtual void Retrieve(const std::string& default_url, |
| 34 const std::string& request_data, | 34 const std::string& request_data, |
| 35 const ResponseCB& response_cb) = 0; | 35 const ResponseCB& response_cb) = 0; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 using CreateFetcherCB = base::Callback<std::unique_ptr<ProvisionFetcher>()>; | 38 using CreateFetcherCB = base::Callback<std::unique_ptr<ProvisionFetcher>()>; |
| 39 | 39 |
| 40 } // namespace media | 40 } // namespace media |
| 41 | 41 |
| 42 #endif // MEDIA_BASE_PROVISION_FETCHER_H | 42 #endif // MEDIA_BASE_ANDROID_PROVISION_FETCHER_H_ |
| OLD | NEW |