apimall / chromiumembedded

Automatically exported from code.google.com/p/chromiumembedded
0 stars 1 forks source link

Change CefWindowInfo::SetAsChild to use CefRect on all platforms #1515

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The CefWindowInfo::SetAsChild signature is currently different on each platform.

Windows (include/internal/cef_win.h):
  void SetAsChild(CefWindowHandle parent, RECT windowRect)

Linux (include/internal/cef_linux.h):
  void SetAsChild(CefWindowHandle parent, const CefRect& windowRect)

OS X (include/internal/cef_mac.h):
  void SetAsChild(CefWindowHandle parent, int x, int y, int width, int height)

It would be nice to standardize these definitions by using the CefRect type on 
all platforms.

Original issue reported on code.google.com by magreenb...@gmail.com on 29 Jan 2015 at 11:49

GoogleCodeExporter commented 9 years ago
CEF is transitioning from Google Code to Bitbucket project hosting. If you 
would like to continue receiving notifications on this issue please add 
yourself as a Watcher at the new location: 
https://bitbucket.org/chromiumembedded/cef/issue/1515

Original comment by magreenb...@gmail.com on 14 Mar 2015 at 3:37