| Index: content/browser/renderer_host/software_frame_manager.h
|
| diff --git a/content/browser/renderer_host/software_frame_manager.h b/content/browser/renderer_host/software_frame_manager.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..32fd886220655199485dae8d6abcbe31233e0b6b
|
| --- /dev/null
|
| +++ b/content/browser/renderer_host/software_frame_manager.h
|
| @@ -0,0 +1,76 @@
|
| +// Copyright 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_BROWSER_RENDERER_HOST_SOFTWARE_FRAME_MANAGER_H_
|
| +#define CONTENT_BROWSER_RENDERER_HOST_SOFTWARE_FRAME_MANAGER_H_
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "base/memory/ref_counted.h"
|
| +#include "base/memory/shared_memory.h"
|
| +#include "base/memory/weak_ptr.h"
|
| +#include "cc/output/software_frame_data.h"
|
| +#include "cc/resources/single_release_callback.h"
|
| +#include "cc/resources/texture_mailbox.h"
|
| +#include "content/common/content_export.h"
|
| +#include "ui/gfx/size.h"
|
| +
|
| +namespace content {
|
| +class SoftwareFrame;
|
| +class SoftwareFrameMemoryManager;
|
| +
|
| +class CONTENT_EXPORT SoftwareFrameManagerClient {
|
| + public:
|
| + // Called when the memory for the current software frame was freed.
|
| + virtual void SoftwareFrameWasFreed(
|
| + uint32 output_surface_id, unsigned frame_id) = 0;
|
| +
|
| + // Called when the SoftwareFrameMemoryManager has requested that the frame
|
| + // be evicted. Upon receiving this callback, the client should release any
|
| + // references that it may hold to the current frame, to ensure that its memory
|
| + // is freed expediently.
|
| + virtual void ReleaseReferencesToSoftwareFrame() = 0;
|
| +};
|
| +
|
| +class CONTENT_EXPORT SoftwareFrameManager {
|
| + public:
|
| + explicit SoftwareFrameManager(
|
| + base::WeakPtr<SoftwareFrameManagerClient> client);
|
| + ~SoftwareFrameManager();
|
| +
|
| + // Swaps to a new frame from shared memory. This frame is guaranteed to
|
| + // not be evicted until SwapToNewFrameComplete is called.
|
| + bool SwapToNewFrame(
|
| + uint32 output_surface_id,
|
| + const cc::SoftwareFrameData* frame_data,
|
| + float frame_device_scale_factor,
|
| + base::ProcessHandle process_handle);
|
| + void SwapToNewFrameComplete(bool visible);
|
| + void SetVisibility(bool visible);
|
| + bool HasCurrentFrame() const;
|
| + void DiscardCurrentFrame();
|
| + void GetCurrentFrameMailbox(
|
| + cc::TextureMailbox* mailbox,
|
| + scoped_ptr<cc::SingleReleaseCallback>* callback);
|
| + const void* GetCurrentFramePixels() const;
|
| + gfx::Size GetCurrentFrameSizeInPixels() const;
|
| + gfx::Size GetCurrentFrameSizeInDIP() const;
|
| +
|
| + private:
|
| + friend class SoftwareFrameMemoryManager;
|
| +
|
| + // Called by SoftwareFrameMemoryManager to demand that the current frame
|
| + // be evicted.
|
| + void EvictCurrentFrame();
|
| +
|
| + base::WeakPtr<SoftwareFrameManagerClient> client_;
|
| +
|
| + // This holds the current software framebuffer.
|
| + scoped_refptr<SoftwareFrame> current_frame_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(SoftwareFrameManager);
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_BROWSER_RENDERER_HOST_SOFTWARE_FRAME_MANAGER_H_
|
|
|