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

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

Issue 10411086: Makes the browser send pixels to the GPU process where it should (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « no previous file | content/browser/renderer_host/dip_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/dip_util.h
diff --git a/content/browser/renderer_host/dip_util.h b/content/browser/renderer_host/dip_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..ac9ba9ded58f721b476cc7ad90bda9493ec1c246
--- /dev/null
+++ b/content/browser/renderer_host/dip_util.h
@@ -0,0 +1,40 @@
+// Copyright (c) 2012 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_DIP_UTIL_H_
+#define CONTENT_BROWSER_RENDERER_HOST_DIP_UTIL_H_
+#pragma once
+
+#include "content/common/content_export.h"
+
+namespace gfx {
+class Point;
+class Rect;
+class Size;
+} // namespace gfx
+
+namespace content {
+class RenderWidgetHostView;
+
+// Returns scale factor used to convert from DIP to pixel coordinate systems.
+// Returns 1.0 if DIP is not enabled.
+CONTENT_EXPORT float GetDIPScaleFactor(const RenderWidgetHostView* view);
+
+// Utility functions that convert point/size/rect between DIP and pixel
+// coordinate system.
+CONTENT_EXPORT gfx::Point ConvertPointToDIP(const RenderWidgetHostView* view,
+ const gfx::Point& point_in_pixel);
+CONTENT_EXPORT gfx::Size ConvertSizeToDIP(const RenderWidgetHostView* view,
+ const gfx::Size& size_in_pixel);
+CONTENT_EXPORT gfx::Rect ConvertRectToDIP(const RenderWidgetHostView* view,
+ const gfx::Rect& rect_in_pixel);
+CONTENT_EXPORT gfx::Point ConvertPointToPixel(const RenderWidgetHostView* view,
+ const gfx::Point& point_in_dip);
+CONTENT_EXPORT gfx::Size ConvertSizeToPixel(const RenderWidgetHostView* view,
+ const gfx::Size& size_in_dip);
+CONTENT_EXPORT gfx::Rect ConvertRectToPixel(const RenderWidgetHostView* view,
+ const gfx::Rect& rect_in_dip);
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_DIP_UTIL_H_
« no previous file with comments | « no previous file | content/browser/renderer_host/dip_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698