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

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

Issue 10407048: browser: Move speech and login files into views/ directory. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/webui/constrained_web_dialog_delegate_base.h" 5 #include "chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 9 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
9 #include "chrome/browser/ui/views/constrained_window_views.h" 10 #include "chrome/browser/ui/views/constrained_window_views.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/ui/webui/web_dialog_delegate.h" 11 #include "chrome/browser/ui/webui/web_dialog_delegate.h"
12 #include "chrome/browser/ui/webui/web_dialog_ui.h" 12 #include "chrome/browser/ui/webui/web_dialog_ui.h"
13 #include "content/public/browser/web_contents.h" 13 #include "content/public/browser/web_contents.h"
14 #include "ui/gfx/size.h" 14 #include "ui/gfx/size.h"
15 #include "ui/views/controls/webview/webview.h" 15 #include "ui/views/controls/webview/webview.h"
16 #include "ui/views/view.h" 16 #include "ui/views/view.h"
17 #include "ui/views/widget/widget_delegate.h" 17 #include "ui/views/widget/widget_delegate.h"
18 18
19 using content::WebContents; 19 using content::WebContents;
20 20
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 WebDialogDelegate* delegate, 144 WebDialogDelegate* delegate,
145 WebDialogWebContentsDelegate* tab_delegate, 145 WebDialogWebContentsDelegate* tab_delegate,
146 TabContentsWrapper* container) { 146 TabContentsWrapper* container) {
147 ConstrainedWebDialogDelegateViewViews* constrained_delegate = 147 ConstrainedWebDialogDelegateViewViews* constrained_delegate =
148 new ConstrainedWebDialogDelegateViewViews(profile, delegate, tab_delegate) ; 148 new ConstrainedWebDialogDelegateViewViews(profile, delegate, tab_delegate) ;
149 ConstrainedWindow* constrained_window = 149 ConstrainedWindow* constrained_window =
150 new ConstrainedWindowViews(container, constrained_delegate); 150 new ConstrainedWindowViews(container, constrained_delegate);
151 constrained_delegate->set_window(constrained_window); 151 constrained_delegate->set_window(constrained_window);
152 return constrained_delegate; 152 return constrained_delegate;
153 } 153 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/color_chooser_win.cc ('k') | chrome/browser/ui/views/login_prompt_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698