| 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" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 45 | 45 |
| 46 CIcon icon_; | 46 CIcon icon_; |
| 47 | 47 |
| 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 } | 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 |