| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/login/proxy_settings_dialog.h" | 5 #include "chrome/browser/chromeos/login/proxy_settings_dialog.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/login/helper.h" | 7 #include "chrome/browser/chromeos/login/helper.h" |
| 8 #include "gfx/rect.h" | 8 #include "ui/gfx/rect.h" |
| 9 #include "gfx/size.h" | 9 #include "ui/gfx/size.h" |
| 10 | 10 |
| 11 namespace { | 11 namespace { |
| 12 | 12 |
| 13 // Hints for size of proxy settings dialog. | 13 // Hints for size of proxy settings dialog. |
| 14 const int kProxySettingsDialogReasonableWidth = 750; | 14 const int kProxySettingsDialogReasonableWidth = 750; |
| 15 const int kProxySettingsDialogReasonableHeight = 550; | 15 const int kProxySettingsDialogReasonableHeight = 550; |
| 16 const float kProxySettingsDialogReasonableWidthRatio = 0.4f; | 16 const float kProxySettingsDialogReasonableWidthRatio = 0.4f; |
| 17 const float kProxySettingsDialogReasonableHeightRatio = 0.4f; | 17 const float kProxySettingsDialogReasonableHeightRatio = 0.4f; |
| 18 | 18 |
| 19 const char kProxySettingsURL[] = "chrome://settings/proxy?menu=off"; | 19 const char kProxySettingsURL[] = "chrome://settings/proxy?menu=off"; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 39 gfx::Rect screen_bounds(chromeos::CalculateScreenBounds(gfx::Size())); | 39 gfx::Rect screen_bounds(chromeos::CalculateScreenBounds(gfx::Size())); |
| 40 SetDialogSize(calculate_size(screen_bounds.width(), | 40 SetDialogSize(calculate_size(screen_bounds.width(), |
| 41 kProxySettingsDialogReasonableWidth, | 41 kProxySettingsDialogReasonableWidth, |
| 42 kProxySettingsDialogReasonableWidthRatio), | 42 kProxySettingsDialogReasonableWidthRatio), |
| 43 calculate_size(screen_bounds.height(), | 43 calculate_size(screen_bounds.height(), |
| 44 kProxySettingsDialogReasonableHeight, | 44 kProxySettingsDialogReasonableHeight, |
| 45 kProxySettingsDialogReasonableHeightRatio)); | 45 kProxySettingsDialogReasonableHeightRatio)); |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace chromeos | 48 } // namespace chromeos |
| OLD | NEW |