summaryrefslogtreecommitdiffstats
path: root/content/browser/android/surface_texture_peer_browser_impl.h
blob: 9dd1c59d992bb41676cb8b545ef24a2371482f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (c) 2012 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_BROWSER_ANDROID_SURFACE_TEXTURE_PEER_BROWSER_IMPL_H_
#define CONTENT_BROWSER_ANDROID_SURFACE_TEXTURE_PEER_BROWSER_IMPL_H_

#include "base/android/scoped_java_ref.h"
#include "base/compiler_specific.h"
#include "content/common/android/surface_texture_peer.h"

namespace content {

// The SurfaceTexturePeer implementation for browser process.
class SurfaceTexturePeerBrowserImpl : public SurfaceTexturePeer {
 public:
  // Construct a SurfaceTexturePeerBrowserImpl object. If
  // |player_in_render_process| is true, calling EstablishSurfaceTexturePeer()
  // will send the java surface texture object to the render process through
  // SandboxedProcessService. Otherwise, it will pass the surface texture
  // to the MediaPlayerBridge object in the browser process.
  explicit SurfaceTexturePeerBrowserImpl(bool player_in_render_process);
  virtual ~SurfaceTexturePeerBrowserImpl();

  // SurfaceTexturePeer implementation.
  virtual void EstablishSurfaceTexturePeer(
      base::ProcessHandle render_process_handle,
      SurfaceTextureTarget type,
      scoped_refptr<SurfaceTextureBridge> surface_texture_bridge,
      int render_view_id,
      int player_id) OVERRIDE;

  static bool RegisterBrowserProcessSurfaceTexture(JNIEnv* env);

 private:
  // Whether the media player is in render process.
  bool player_in_render_process_;

  base::android::ScopedJavaGlobalRef<jobject> surface_;

  DISALLOW_COPY_AND_ASSIGN(SurfaceTexturePeerBrowserImpl);
};

}  // namespace content

#endif  // CONTENT_BROWSER_ANDROID_SURFACE_TEXTURE_PEER_BROWSER_IMPL_H_