| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_MEDIA_URL_INTERCEPTOR_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_MEDIA_URL_INTERCEPTOR_H_ |
| 7 |
| 8 #include "content/common/content_export.h" |
| 9 |
| 10 namespace media { |
| 11 class MediaUrlInterceptor; |
| 12 } |
| 13 |
| 14 namespace content { |
| 15 |
| 16 class CONTENT_EXPORT MediaUrlInterceptor { |
| 17 public: |
| 18 // Registers an interceptor to allow embedders handling custom urls. |
| 19 static void Register(media::MediaUrlInterceptor* media_url_interceptor); |
| 20 |
| 21 private: |
| 22 MediaUrlInterceptor() = delete; |
| 23 ~MediaUrlInterceptor() = delete; |
| 24 }; |
| 25 |
| 26 } // namespace content |
| 27 |
| 28 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_MEDIA_URL_INTERCEPTOR_H_ |
| OLD | NEW |