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/chromeos/sim_dialog_delegate.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/chromeos/sim_dialog_delegate.h" 5 #include "chrome/browser/chromeos/sim_dialog_delegate.h"
6 6
7 #include "base/stringprintf.h" 7 #include "base/stringprintf.h"
8 #include "chrome/browser/chromeos/frame/bubble_window.h" 8 #include "chrome/browser/chromeos/frame/bubble_window.h"
9 #include "chrome/browser/chromeos/login/user_manager.h" 9 #include "chrome/browser/chromeos/login/user_manager.h"
10 #include "chrome/browser/profiles/profile_manager.h" 10 #include "chrome/browser/profiles/profile_manager.h"
11 #include "chrome/browser/ui/browser.h" 11 #include "chrome/browser/ui/browser.h"
12 #include "chrome/browser/ui/browser_list.h" 12 #include "chrome/browser/ui/browser_list.h"
13 #include "chrome/browser/ui/views/html_dialog_view.h" 13 #include "chrome/browser/ui/views/html_dialog_view.h"
14 #include "chrome/common/url_constants.h" 14 #include "chrome/common/url_constants.h"
15 #include "ui/views/widget/widget.h"
15 #include "views/view.h" 16 #include "views/view.h"
16 #include "views/widget/widget.h"
17 17
18 namespace { 18 namespace {
19 19
20 // Default width/height of the dialog. 20 // Default width/height of the dialog.
21 const int kDefaultWidth = 350; 21 const int kDefaultWidth = 350;
22 const int kDefaultHeight = 225; 22 const int kDefaultHeight = 225;
23 23
24 // Width/height for the change PIN dialog mode. 24 // Width/height for the change PIN dialog mode.
25 const int kChangePinWidth = 350; 25 const int kChangePinWidth = 350;
26 const int kChangePinHeight = 245; 26 const int kChangePinHeight = 245;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 bool SimDialogDelegate::ShouldShowDialogTitle() const { 122 bool SimDialogDelegate::ShouldShowDialogTitle() const {
123 return false; 123 return false;
124 } 124 }
125 125
126 bool SimDialogDelegate::HandleContextMenu(const ContextMenuParams& params) { 126 bool SimDialogDelegate::HandleContextMenu(const ContextMenuParams& params) {
127 // Disable context menu. 127 // Disable context menu.
128 return true; 128 return true;
129 } 129 }
130 130
131 } // namespace chromeos 131 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/setting_level_bubble.cc ('k') | chrome/browser/chromeos/status/accessibility_menu_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698