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

Unified Diff: content/browser/aura/compositor_resize_lock.h

Issue 137893007: Add the UI compositor to the Mac build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missed file Created 6 years, 11 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/aura/compositor_resize_lock.h
diff --git a/content/browser/aura/compositor_resize_lock.h b/content/browser/aura/compositor_resize_lock.h
deleted file mode 100644
index 51787e49393089b8e7c968e53e36eaa83baa7174..0000000000000000000000000000000000000000
--- a/content/browser/aura/compositor_resize_lock.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_AURA_RESIZE_LOCK_AURA_H_
-#define CONTENT_BROWSER_AURA_RESIZE_LOCK_AURA_H_
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/weak_ptr.h"
-#include "base/time/time.h"
-#include "content/browser/aura/resize_lock.h"
-
-namespace aura { class RootWindow; }
-
-namespace ui { class CompositorLock; }
-
-namespace content {
-
-// Used to prevent further resizes while a resize is pending.
-class CompositorResizeLock : public ResizeLock {
- public:
- CompositorResizeLock(aura::RootWindow* root_window,
- const gfx::Size new_size,
- bool defer_compositor_lock,
- const base::TimeDelta& timeout);
- virtual ~CompositorResizeLock();
-
- virtual bool GrabDeferredLock() OVERRIDE;
- virtual void UnlockCompositor() OVERRIDE;
-
- protected:
- virtual void LockCompositor() OVERRIDE;
- void CancelLock();
-
- private:
- aura::RootWindow* root_window_;
- scoped_refptr<ui::CompositorLock> compositor_lock_;
- base::WeakPtrFactory<CompositorResizeLock> weak_ptr_factory_;
- bool cancelled_;
-
- DISALLOW_COPY_AND_ASSIGN(CompositorResizeLock);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_AURA_RESIZE_LOCK_AURA_H_
« no previous file with comments | « content/browser/aura/browser_compositor_output_surface_proxy.cc ('k') | content/browser/aura/compositor_resize_lock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698