#ifndef CC_TREES_PROXY_H_
#define CC_TREES_PROXY_H_
#include <string>
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
#include "base/values.h"
#include "cc/base/cc_export.h"
namespace base { class SingleThreadTaskRunner; }
namespace gfx {
class Rect;
class Vector2d;
}
namespace cc {
class LayerTreeDebugState;
class OutputSurface;
struct RendererCapabilities;
class CC_EXPORT Proxy {
public:
base::SingleThreadTaskRunner* MainThreadTaskRunner() const;
bool HasImplThread() const;
base::SingleThreadTaskRunner* ImplThreadTaskRunner() const;
bool IsMainThread() const;
bool IsImplThread() const;
bool IsMainThreadBlocked() const;
#if DCHECK_IS_ON
void SetMainThreadBlocked(bool is_main_thread_blocked);
void SetCurrentThreadIsImplThread(bool is_impl_thread);
#endif
virtual ~Proxy();
virtual bool CompositeAndReadback(void* pixels, const gfx::Rect& rect) = 0;
virtual void FinishAllRendering() = 0;
virtual bool IsStarted() const = 0;
virtual void SetLayerTreeHostClientReady() = 0;
virtual void SetVisible(bool visible) = 0;
virtual void CreateAndInitializeOutputSurface() = 0;
virtual const RendererCapabilities& GetRendererCapabilities() const = 0;
virtual void SetNeedsAnimate() = 0;
virtual void SetNeedsUpdateLayers() = 0;
virtual void SetNeedsCommit() = 0;
virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0;
virtual void SetNextCommitWaitsForActivation() = 0;
virtual void NotifyInputThrottledUntilCommit() = 0;
virtual void SetDeferCommits(bool defer_commits) = 0;
virtual void MainThreadHasStoppedFlinging() = 0;
virtual bool CommitRequested() const = 0;
virtual bool BeginMainFrameRequested() const = 0;
virtual void Start() = 0;
virtual void Stop() = 0;
virtual void ForceSerializeOnSwapBuffers() = 0;
virtual size_t MaxPartialTextureUpdates() const = 0;
virtual void AcquireLayerTextures() = 0;
virtual scoped_ptr<base::Value> AsValue() const = 0;
virtual void SetDebugState(const LayerTreeDebugState& debug_state) = 0;
virtual bool CommitPendingForTesting() = 0;
virtual scoped_ptr<base::Value> SchedulerStateAsValueForTesting();
protected:
explicit Proxy(
scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner);
friend class DebugScopedSetImplThread;
friend class DebugScopedSetMainThread;
friend class DebugScopedSetMainThreadBlocked;
private:
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner_;
#if DCHECK_IS_ON
bool impl_thread_is_overridden_;
bool is_main_thread_blocked_;
#endif
DISALLOW_COPY_AND_ASSIGN(Proxy);
};
#if DCHECK_IS_ON
class DebugScopedSetMainThreadBlocked {
public:
explicit DebugScopedSetMainThreadBlocked(Proxy* proxy) : proxy_(proxy) {
DCHECK(!proxy_->IsMainThreadBlocked());
proxy_->SetMainThreadBlocked(true);
}
~DebugScopedSetMainThreadBlocked() {
DCHECK(proxy_->IsMainThreadBlocked());
proxy_->SetMainThreadBlocked(false);
}
private:
Proxy* proxy_;
DISALLOW_COPY_AND_ASSIGN(DebugScopedSetMainThreadBlocked);
};
#else
class DebugScopedSetMainThreadBlocked {
public:
explicit DebugScopedSetMainThreadBlocked(Proxy* proxy) {}
~DebugScopedSetMainThreadBlocked() {}
private:
DISALLOW_COPY_AND_ASSIGN(DebugScopedSetMainThreadBlocked);
};
#endif
}
#endif