Update for ui -> gfx moves in Chrome 31

See https://codereview.chromium.org/23769011.
This commit is contained in:
Adam Roben 2013-12-02 11:47:58 -05:00
parent 9c5b81bf7a
commit 7e6f5aa734
2 changed files with 6 additions and 6 deletions

View file

@ -2,13 +2,13 @@
#define BRIGHTRAY_BROWSER_WIN_DEVTOOLS_WINDOW_H_
#include "base/memory/weak_ptr.h"
#include "ui/base/win/window_impl.h"
#include "ui/gfx/win/window_impl.h"
namespace brightray {
class InspectableWebContentsViewWin;
class DevToolsWindow : public ui::WindowImpl,
class DevToolsWindow : public gfx::WindowImpl,
public base::SupportsWeakPtr<DevToolsWindow> {
public:
static DevToolsWindow* Create(

View file

@ -5,7 +5,7 @@
#include "browser/win/devtools_window.h"
#include "content/public/browser/web_contents_view.h"
#include "ui/base/win/hwnd_util.h"
#include "ui/gfx/win/hwnd_util.h"
namespace brightray {
@ -44,9 +44,9 @@ void InspectableWebContentsViewWin::ShowDevTools() {
auto contents_view = inspectable_web_contents_->GetWebContents()->GetView();
auto size = contents_view->GetContainerSize();
size.Enlarge(-kWindowInset, -kWindowInset);
ui::CenterAndSizeWindow(contents_view->GetNativeView(),
devtools_window_->hwnd(),
size);
gfx::CenterAndSizeWindow(contents_view->GetNativeView(),
devtools_window_->hwnd(),
size);
ShowWindow(devtools_window_->hwnd(), SW_SHOWNORMAL);
}