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
3 // found in the LICENSE file.
5 #ifndef MEDIA_BASE_ANDROID_MEDIA_URL_INTERCEPTOR_H_
6 #define MEDIA_BASE_ANDROID_MEDIA_URL_INTERCEPTOR_H_
10 #include "base/android/jni_android.h"
11 #include "media/base/media_export.h"
15 // Interceptor for content embedders to handle custom media urls
16 // and translate them into files containing media.
17 class MEDIA_EXPORT MediaUrlInterceptor
{
19 virtual ~MediaUrlInterceptor() {};
21 // Returns true if the embedder has intercepted the url and
23 // Output arguments (only when the url has been intercepted):
24 // - |fd|: file descriptor to the file containing the media element.
25 // - |offset|: offset in bytes from the start of the file to the
27 // - |size|: size in bytes of the media element.
28 virtual bool Intercept(const std::string
& url
,
31 int64
* size
) const = 0;
36 #endif // MEDIA_BASE_ANDROID_MEDIA_URL_INTERCEPTOR_H_