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

Side by Side Diff: media/base/android/media_url_interceptor.h

Issue 411353002: MediaUrlInterceptor for embedders to handle custom urls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
(Empty)
1 // Copyright (c) 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.
4
5 #ifndef MEDIA_BASE_ANDROID_MEDIA_URL_INTERCEPTOR_H_
6 #define MEDIA_BASE_ANDROID_MEDIA_URL_INTERCEPTOR_H_
7
8 #include <string>
9
10 #include "base/android/jni_android.h"
11 #include "media/base/media_export.h"
12
13 namespace media {
14
15 // Interceptor for content embedders to handle custom media urls
16 // and translate them into files containing media.
17 class MEDIA_EXPORT MediaUrlInterceptor {
18 public:
19 virtual ~MediaUrlInterceptor() {};
20
21 // Return true if the embedder has intercepted the url and
qinmin 2014/07/24 21:05:28 s/Return/Returns/
Ignacio Solla 2014/07/25 10:35:07 Done.
22 // false otherwise.
23 // Output arguments (only when url 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
26 // media element.
27 // - |size|: size in bytes of the media element.
28 virtual bool Intercept(const std::string& url,
29 int* fd,
qinmin 2014/07/24 21:05:28 align the indentations with the param above
Ignacio Solla 2014/07/25 10:35:07 Done.
30 int64* offset,
31 int64* size) const = 0;
mnaganov (inactive) 2014/07/25 08:17:49 Pro-tip: use Clang format to do the dirty job for
Ignacio Solla 2014/07/25 10:35:07 Thanks for the tip. (In this case I have decided
32 };
33
34 } // namespace media
35
36 #endif // MEDIA_BASE_ANDROID_MEDIA_URL_INTERCEPTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698