| OLD | NEW |
| 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/chromeos/choose_mobile_network_dialog.h" | 5 #include "chrome/browser/chromeos/choose_mobile_network_dialog.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/login/user_manager.h" | 7 #include "chrome/browser/chromeos/login/user_manager.h" |
| 8 #include "chrome/browser/profiles/profile_manager.h" | 8 #include "chrome/browser/profiles/profile_manager.h" |
| 9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 10 #include "chrome/browser/ui/browser_list.h" | 10 #include "chrome/browser/ui/browser_list.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 bool* out_close_dialog) { | 80 bool* out_close_dialog) { |
| 81 if (out_close_dialog) | 81 if (out_close_dialog) |
| 82 *out_close_dialog = true; | 82 *out_close_dialog = true; |
| 83 } | 83 } |
| 84 | 84 |
| 85 bool ChooseMobileNetworkDialog::ShouldShowDialogTitle() const { | 85 bool ChooseMobileNetworkDialog::ShouldShowDialogTitle() const { |
| 86 return false; | 86 return false; |
| 87 } | 87 } |
| 88 | 88 |
| 89 bool ChooseMobileNetworkDialog::HandleContextMenu( | 89 bool ChooseMobileNetworkDialog::HandleContextMenu( |
| 90 const ContextMenuParams& params) { | 90 const content::ContextMenuParams& params) { |
| 91 // Disable context menu. | 91 // Disable context menu. |
| 92 return true; | 92 return true; |
| 93 } | 93 } |
| 94 | 94 |
| 95 } // namespace chromeos | 95 } // namespace chromeos |
| OLD | NEW |