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

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

Issue 11421164: Migrate CollectedCookiesViews to Chrome style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/profiles/profile.h"
9 #include "chrome/browser/ui/tab_contents/tab_contents.h" 9 #include "chrome/browser/ui/tab_contents/tab_contents.h"
10 #include "chrome/browser/ui/views/constrained_window_views.h" 10 #include "chrome/browser/ui/views/constrained_window_views.h"
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 WebDialogDelegate* delegate, 187 WebDialogDelegate* delegate,
188 WebDialogWebContentsDelegate* tab_delegate, 188 WebDialogWebContentsDelegate* tab_delegate,
189 content::WebContents* web_contents) { 189 content::WebContents* web_contents) {
190 ConstrainedWebDialogDelegateViewViews* constrained_delegate = 190 ConstrainedWebDialogDelegateViewViews* constrained_delegate =
191 new ConstrainedWebDialogDelegateViewViews( 191 new ConstrainedWebDialogDelegateViewViews(
192 profile, delegate, tab_delegate); 192 profile, delegate, tab_delegate);
193 ConstrainedWindow* constrained_window = 193 ConstrainedWindow* constrained_window =
194 new ConstrainedWindowViews(web_contents, 194 new ConstrainedWindowViews(web_contents,
195 constrained_delegate, 195 constrained_delegate,
196 false, 196 false,
197 ConstrainedWindowViews::DEFAULT_INSETS); 197 ConstrainedWindowViews::FRAME_LAYOUT_FULL);
198 constrained_delegate->set_window(constrained_window); 198 constrained_delegate->set_window(constrained_window);
199 return constrained_delegate; 199 return constrained_delegate;
200 } 200 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/collected_cookies_views.cc ('k') | chrome/browser/ui/views/constrained_window_frame_simple.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698