Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: remoting/host/verify_config_window_win.h

Issue 11970044: Merged all Chromoting Host code into remoting_core.dll (Windows). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback. Rebased. Debug is compilable. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/host/remoting_me2me_host.cc ('k') | remoting/host/verify_config_window_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « remoting/host/remoting_me2me_host.cc ('k') | remoting/host/verify_config_window_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698