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

Unified Diff: content/browser/compositor/resize_lock.h

Issue 1841153002: BrowserCompositorMac, ResizeLock, DelegatedFrameHost => content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Mac Build Created 4 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/compositor/delegated_frame_host.cc ('k') | content/browser/compositor/resize_lock.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/compositor/resize_lock.h
diff --git a/content/browser/compositor/resize_lock.h b/content/browser/compositor/resize_lock.h
deleted file mode 100644
index 8b4829785eb77556c3d233301e93d9ab43e4b2bf..0000000000000000000000000000000000000000
--- a/content/browser/compositor/resize_lock.h
+++ /dev/null
@@ -1,37 +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_COMPOSITOR_RESIZE_LOCK_H_
-#define CONTENT_BROWSER_COMPOSITOR_RESIZE_LOCK_H_
-
-#include "base/macros.h"
-#include "content/common/content_export.h"
-#include "ui/gfx/geometry/size.h"
-
-namespace content {
-
-class CONTENT_EXPORT ResizeLock {
- public:
- virtual ~ResizeLock();
-
- virtual bool GrabDeferredLock();
- virtual void UnlockCompositor();
-
- const gfx::Size& expected_size() const { return new_size_; }
-
- protected:
- ResizeLock(const gfx::Size new_size, bool defer_compositor_lock);
-
- virtual void LockCompositor();
-
- private:
- gfx::Size new_size_;
- bool defer_compositor_lock_;
-
- DISALLOW_COPY_AND_ASSIGN(ResizeLock);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_COMPOSITOR_RESIZE_LOCK_H_
« no previous file with comments | « content/browser/compositor/delegated_frame_host.cc ('k') | content/browser/compositor/resize_lock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698