Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(792)

Unified Diff: content/browser/renderer_host/delegated_frame_evictor.h

Issue 2811083002: Move frame eviction into components (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/renderer_host/delegated_frame_evictor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/delegated_frame_evictor.h
diff --git a/content/browser/renderer_host/delegated_frame_evictor.h b/content/browser/renderer_host/delegated_frame_evictor.h
deleted file mode 100644
index c1bd50ede1b50c9c8ddffd03294bdbec835abe21..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/delegated_frame_evictor.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// 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_DELEGATED_FRAME_EVICTOR_H_
-#define CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_EVICTOR_H_
-
-#include "base/macros.h"
-#include "content/browser/renderer_host/renderer_frame_manager.h"
-#include "content/common/content_export.h"
-
-namespace content {
-
-class CONTENT_EXPORT DelegatedFrameEvictorClient {
- public:
- virtual ~DelegatedFrameEvictorClient() {}
- virtual void EvictDelegatedFrame() = 0;
-};
-
-class CONTENT_EXPORT DelegatedFrameEvictor : public RendererFrameManagerClient {
- public:
- // |client| must outlive |this|.
- explicit DelegatedFrameEvictor(DelegatedFrameEvictorClient* client);
- ~DelegatedFrameEvictor() override;
-
- void SwappedFrame(bool visible);
- void DiscardedFrame();
- void SetVisible(bool visible);
- void LockFrame();
- void UnlockFrame();
- bool HasFrame() { return has_frame_; }
-
- private:
- // RendererFrameManagerClient implementation.
- void EvictCurrentFrame() override;
-
- DelegatedFrameEvictorClient* client_;
- bool has_frame_;
- bool visible_;
-
- DISALLOW_COPY_AND_ASSIGN(DelegatedFrameEvictor);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_EVICTOR_H_
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/renderer_host/delegated_frame_evictor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698