blob: ca09aad033b0eb68c2f36b1ef268b2e58bdbe061 [file] [log] [blame]
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MEDIA_PLAYER_BUFFERED_DATA_SOURCE_H_
#define MEDIA_PLAYER_BUFFERED_DATA_SOURCE_H_
#include <stdio.h>
#include "base/basictypes.h"
#include "base/message_loop.h"
#include "googleurl/src/gurl.h"
#include "media/base/data_source.h"
namespace media {
enum Preload {
kPreloadNone,
kPreloadMetaData,
kPreloadAuto,
};
// TODO: Investigate if we still need BufferedDataSource.
class BufferedDataSource : public DataSource {
public:
virtual void SetPreload(Preload preload) { UNREFERENCED_PARAMETER(preload); }
virtual bool HasSingleOrigin() { return true; }
virtual bool DidPassCORSAccessCheck() const { return true; }
virtual void Abort() {}
};
} // namespace media
#endif // MEDIA_PLAYER_BUFFERED_DATA_SOURCE_H_