Chromium Code Reviews| Index: content/public/renderer/media_player_load_delegate.h |
| diff --git a/content/public/renderer/media_player_load_delegate.h b/content/public/renderer/media_player_load_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1f4321816357d7fc3f339074b9039a56b549b1e9 |
| --- /dev/null |
| +++ b/content/public/renderer/media_player_load_delegate.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_PUBLIC_RENDERER_MEDIA_PLAYER_LOAD_DELEGATE_H_ |
| +#define CONTENT_PUBLIC_RENDERER_MEDIA_PLAYER_LOAD_DELEGATE_H_ |
| + |
| +#include "base/callback_forward.h" |
| +#include "content/common/content_export.h" |
| + |
| +namespace content { |
| + |
| +// Allows embedders to control when media players will start loading resources. |
| +class CONTENT_EXPORT MediaPlayerLoadDelegate { |
|
scherkus (not reviewing)
2013/06/28 06:04:41
open to suggestions on naming
it's a bit unwieldy
|
| + public: |
| + MediaPlayerLoadDelegate() {} |
| + virtual ~MediaPlayerLoadDelegate() {} |
| + |
| + // Called to defer loading. Implementors can run |closure| to continue |
| + // loading the media resource. |
| + virtual void DeferLoad(const base::Closure& closure) = 0; |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_PUBLIC_RENDERER_MEDIA_PLAYER_LOAD_DELEGATE_H_ |