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

Side by Side Diff: chrome/browser/ui/views/native_constrained_window_aura.cc

Issue 8598031: views: Move widget/ directory to ui/views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reland for real Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/constrained_window_views.h" 5 #include "chrome/browser/ui/views/constrained_window_views.h"
6 6
7 #include "views/widget/native_widget_aura.h" 7 #include "ui/views/widget/native_widget_aura.h"
8 8
9 class NativeConstrainedWindowAura : public NativeConstrainedWindow, 9 class NativeConstrainedWindowAura : public NativeConstrainedWindow,
10 public views::NativeWidgetAura { 10 public views::NativeWidgetAura {
11 public: 11 public:
12 explicit NativeConstrainedWindowAura( 12 explicit NativeConstrainedWindowAura(
13 NativeConstrainedWindowDelegate* delegate) 13 NativeConstrainedWindowDelegate* delegate)
14 : views::NativeWidgetAura(delegate->AsNativeWidgetDelegate()), 14 : views::NativeWidgetAura(delegate->AsNativeWidgetDelegate()),
15 delegate_(delegate) { 15 delegate_(delegate) {
16 } 16 }
17 17
(...skipping 14 matching lines...) Expand all
32 }; 32 };
33 33
34 //////////////////////////////////////////////////////////////////////////////// 34 ////////////////////////////////////////////////////////////////////////////////
35 // NativeConstrainedWindow, public: 35 // NativeConstrainedWindow, public:
36 36
37 // static 37 // static
38 NativeConstrainedWindow* NativeConstrainedWindow::CreateNativeConstrainedWindow( 38 NativeConstrainedWindow* NativeConstrainedWindow::CreateNativeConstrainedWindow(
39 NativeConstrainedWindowDelegate* delegate) { 39 NativeConstrainedWindowDelegate* delegate) {
40 return new NativeConstrainedWindowAura(delegate); 40 return new NativeConstrainedWindowAura(delegate);
41 } 41 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/menu_model_adapter_test.cc ('k') | chrome/browser/ui/views/native_constrained_window_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698