| 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 #ifndef REMOTING_HOST_VERIFY_CONFIG_WINDOW_WIN_H_ | 5 #ifndef REMOTING_HOST_VERIFY_CONFIG_WINDOW_WIN_H_ |
| 6 #define REMOTING_HOST_VERIFY_CONFIG_WINDOW_WIN_H_ | 6 #define REMOTING_HOST_VERIFY_CONFIG_WINDOW_WIN_H_ |
| 7 | 7 |
| 8 // altbase.h must be included before atlapp.h | 8 // altbase.h must be included before atlapp.h |
| 9 #include <atlbase.h> | 9 #include <atlbase.h> |
| 10 #include <atlapp.h> | 10 #include <atlapp.h> |
| 11 #include <atlcrack.h> | 11 #include <atlcrack.h> |
| 12 #include <atlwin.h> | 12 #include <atlwin.h> |
| 13 #include <atluser.h> | 13 #include <atluser.h> |
| 14 #include <string> | 14 #include <string> |
| 15 | 15 |
| 16 #include "base/callback.h" | 16 #include "base/callback.h" |
| 17 #include "remoting/host/win/elevated_controller_resource.h" | 17 #include "remoting/host/win/core_resource.h" |
| 18 | 18 |
| 19 namespace remoting { | 19 namespace remoting { |
| 20 | 20 |
| 21 class VerifyConfigWindowWin : public ATL::CDialogImpl<VerifyConfigWindowWin> { | 21 class VerifyConfigWindowWin : public ATL::CDialogImpl<VerifyConfigWindowWin> { |
| 22 public: | 22 public: |
| 23 enum { IDD = IDD_VERIFY_CONFIG_DIALOG }; | 23 enum { IDD = IDD_VERIFY_CONFIG_DIALOG }; |
| 24 | 24 |
| 25 BEGIN_MSG_MAP_EX(VerifyConfigWindowWin) | 25 BEGIN_MSG_MAP_EX(VerifyConfigWindowWin) |
| 26 MSG_WM_INITDIALOG(OnInitDialog) | 26 MSG_WM_INITDIALOG(OnInitDialog) |
| 27 MSG_WM_CLOSE(OnClose) | 27 MSG_WM_CLOSE(OnClose) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 48 const std::string email_; | 48 const std::string email_; |
| 49 const std::string host_id_; | 49 const std::string host_id_; |
| 50 const std::string host_secret_hash_; | 50 const std::string host_secret_hash_; |
| 51 | 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(VerifyConfigWindowWin); | 52 DISALLOW_COPY_AND_ASSIGN(VerifyConfigWindowWin); |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace remoting | 55 } // namespace remoting |
| 56 | 56 |
| 57 #endif // REMOTING_HOST_VERIFY_CONFIG_WINDOW_WIN_H_ | 57 #endif // REMOTING_HOST_VERIFY_CONFIG_WINDOW_WIN_H_ |
| OLD | NEW |