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

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

Issue 2773433003: Fix CompositorResizeLock to do something. (Closed)
Patch Set: resizelock: observer-rebase Created 3 years, 9 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
Index: content/browser/renderer_host/compositor_resize_lock_aura.h
diff --git a/content/browser/renderer_host/compositor_resize_lock_aura.h b/content/browser/renderer_host/compositor_resize_lock_aura.h
deleted file mode 100644
index f12e43842b5b7c29610f761e08ee4762faaddce5..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/compositor_resize_lock_aura.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2014 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_COMPOSITOR_RESIZE_LOCK_AURA_H_
-#define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_RESIZE_LOCK_AURA_H_
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/weak_ptr.h"
-#include "base/time/time.h"
-#include "content/browser/renderer_host/resize_lock.h"
-
-namespace aura {
-class WindowTreeHost;
-}
-namespace ui {
-class CompositorLock;
-}
-
-namespace content {
-
-// Used to prevent further resizes while a resize is pending.
-class CompositorResizeLock : public ResizeLock {
- public:
- CompositorResizeLock(aura::WindowTreeHost* host,
- const gfx::Size new_size,
- bool defer_compositor_lock,
- const base::TimeDelta& timeout);
- ~CompositorResizeLock() override;
-
- bool GrabDeferredLock() override;
- void UnlockCompositor() override;
-
- protected:
- void LockCompositor() override;
- void CancelLock();
-
- private:
- aura::WindowTreeHost* host_;
- scoped_refptr<ui::CompositorLock> compositor_lock_;
- bool cancelled_;
-
- base::WeakPtrFactory<CompositorResizeLock> weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(CompositorResizeLock);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_RESIZE_LOCK_AURA_H_
« no previous file with comments | « content/browser/renderer_host/compositor_resize_lock.cc ('k') | content/browser/renderer_host/compositor_resize_lock_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698