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

Unified Diff: content/browser/renderer_host/resize_lock.cc

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
« no previous file with comments | « content/browser/renderer_host/resize_lock.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/resize_lock.cc
diff --git a/content/browser/renderer_host/resize_lock.cc b/content/browser/renderer_host/resize_lock.cc
deleted file mode 100644
index dca36fa8a07c6accaccab8ec8bd2037ef117a2ab..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/resize_lock.cc
+++ /dev/null
@@ -1,34 +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.
-
-#include "content/browser/renderer_host/resize_lock.h"
-
-namespace content {
-
-ResizeLock::ResizeLock(const gfx::Size new_size, bool defer_compositor_lock)
- : new_size_(new_size), defer_compositor_lock_(defer_compositor_lock) {
- if (!defer_compositor_lock_)
- LockCompositor();
-}
-
-ResizeLock::~ResizeLock() {
- UnlockCompositor();
-}
-
-bool ResizeLock::GrabDeferredLock() {
- if (!defer_compositor_lock_)
- return false;
- LockCompositor();
- return true;
-}
-
-void ResizeLock::UnlockCompositor() {
- defer_compositor_lock_ = false;
-}
-
-void ResizeLock::LockCompositor() {
- defer_compositor_lock_ = false;
-}
-
-} // namespace content
« no previous file with comments | « content/browser/renderer_host/resize_lock.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698