| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ash/system/chromeos/multi_user/user_switch_util.h" | 5 #include "ash/system/chromeos/multi_user/user_switch_util.h" |
| 6 | 6 |
| 7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
| 8 #include "ash/system/chromeos/screen_security/screen_tray_item.h" | 8 #include "ash/system/chromeos/screen_security/screen_tray_item.h" |
| 9 #include "ash/system/tray/system_tray.h" | 9 #include "ash/system/tray/system_tray.h" |
| 10 #include "grit/ash_strings.h" | 10 #include "grit/ash_strings.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 //////////////////////////////////////////////////////////////////////////////// | 30 //////////////////////////////////////////////////////////////////////////////// |
| 31 // Dialog for multi-profiles desktop casting warning. | 31 // Dialog for multi-profiles desktop casting warning. |
| 32 class DesktopCastingWarningView : public views::DialogDelegateView { | 32 class DesktopCastingWarningView : public views::DialogDelegateView { |
| 33 public: | 33 public: |
| 34 DesktopCastingWarningView(base::Callback<void()> on_accept); | 34 DesktopCastingWarningView(base::Callback<void()> on_accept); |
| 35 virtual ~DesktopCastingWarningView(); | 35 virtual ~DesktopCastingWarningView(); |
| 36 | 36 |
| 37 static void ShowDialog(const base::Callback<void()> on_accept); | 37 static void ShowDialog(const base::Callback<void()> on_accept); |
| 38 | 38 |
| 39 // views::DialogDelegate overrides. | 39 // views::DialogDelegate overrides. |
| 40 virtual bool Accept() OVERRIDE; | 40 virtual bool Accept() override; |
| 41 virtual base::string16 GetDialogButtonLabel( | 41 virtual base::string16 GetDialogButtonLabel( |
| 42 ui::DialogButton button) const OVERRIDE; | 42 ui::DialogButton button) const override; |
| 43 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; | 43 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const override; |
| 44 virtual int GetDefaultDialogButton() const OVERRIDE; | 44 virtual int GetDefaultDialogButton() const override; |
| 45 | 45 |
| 46 // views::WidgetDelegate overrides. | 46 // views::WidgetDelegate overrides. |
| 47 virtual ui::ModalType GetModalType() const OVERRIDE; | 47 virtual ui::ModalType GetModalType() const override; |
| 48 | 48 |
| 49 // views::View overrides. | 49 // views::View overrides. |
| 50 virtual gfx::Size GetPreferredSize() const OVERRIDE; | 50 virtual gfx::Size GetPreferredSize() const override; |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 void InitDialog(); | 53 void InitDialog(); |
| 54 | 54 |
| 55 const base::Callback<void()> on_switch_; | 55 const base::Callback<void()> on_switch_; |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(DesktopCastingWarningView); | 57 DISALLOW_COPY_AND_ASSIGN(DesktopCastingWarningView); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 // The current instance of the running dialog - or NULL. This is used for | 60 // The current instance of the running dialog - or NULL. This is used for |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 if (!instance_for_test) | 190 if (!instance_for_test) |
| 191 return false; | 191 return false; |
| 192 if (accept) | 192 if (accept) |
| 193 instance_for_test->Accept(); | 193 instance_for_test->Accept(); |
| 194 delete instance_for_test->GetWidget()->GetNativeWindow(); | 194 delete instance_for_test->GetWidget()->GetNativeWindow(); |
| 195 CHECK(!instance_for_test); | 195 CHECK(!instance_for_test); |
| 196 return true; | 196 return true; |
| 197 } | 197 } |
| 198 | 198 |
| 199 } // namespace chromeos | 199 } // namespace chromeos |
| OLD | NEW |