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

Side by Side Diff: remoting/host/elevated_controller.rc

Issue 10071025: [Chromoting] Make the Windows host controller ask the user to confirm host registration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add license boilerplate. Created 8 years, 8 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 | « no previous file | remoting/host/elevated_controller_module_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 #include "afxres.h" 1 #include "afxres.h"
2 2
3 // Embedded type library. 3 // Embedded type library.
4 1 typelib "remoting/host/elevated_controller.tlb" 4 1 typelib "remoting/host/elevated_controller.tlb"
5 5
6 #include "elevated_controller_resource.h"
7
6 // English (U.S.) resources 8 // English (U.S.) resources
7 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) 9 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
8 #ifdef _WIN32 10 #ifdef _WIN32
9 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 11 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
10 #pragma code_page(1252) 12 #pragma code_page(1252)
11 #endif //_WIN32 13 #endif //_WIN32
12 14
13 STRINGTABLE 15 STRINGTABLE
14 BEGIN 16 BEGIN
15 #ifdef OFFICIAL_BUILD 17 #ifdef OFFICIAL_BUILD
16 100 "Chrome Remote Desktop Host Controller" 18 IDS_CONTROLLER "Chrome Remote Desktop Host Controller"
17 #else 19 #else
18 100 "Chromoting Host Controller" 20 IDS_CONTROLLER "Chromoting Host Controller"
19 #endif 21 #endif
20 END 22 END
21 23
22 #endif // English (U.S.) resources 24
25 /////////////////////////////////////////////////////////////////////////////
26 //
27 // Dialog
28 //
29
30 IDD_VERIFY_CONFIG_DIALOG DIALOGEX 0, 0, 221, 120
31 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION
32 EXSTYLE WS_EX_TOPMOST
33 CAPTION "kTitle"
34 FONT 8, "MS Shell Dlg", 400, 0, 0x1
35 BEGIN
36 EDITTEXT IDC_PIN,7,69,107,15,WS_TABSTOP
37 DEFPUSHBUTTON "kOK",IDOK,116,100,98,14,WS_TABSTOP
38 LTEXT "kConfirmConfigChange",IDC_MESSAGE,7,7,207,30
39 LTEXT "kEmail",IDC_EMAIL,7,38,207,30
40 PUSHBUTTON "kCancel",IDCANCEL,7,100,98,14,WS_TABSTOP
41 END
42
43
44 /////////////////////////////////////////////////////////////////////////////
45 //
46 // DESIGNINFO
47 //
48
49 #ifdef APSTUDIO_INVOKED
50 GUIDELINES DESIGNINFO
51 BEGIN
52 IDD_VERIFY_CONFIG_DIALOG, DIALOG
53 BEGIN
54 LEFTMARGIN, 7
55 RIGHTMARGIN, 214
56 VERTGUIDE, 105
57 VERTGUIDE, 116
58 VERTGUIDE, 203
59 TOPMARGIN, 7
60 BOTTOMMARGIN, 52
61 END
62 END
63 #endif // APSTUDIO_INVOKED
64
65 #endif // English (U.S.) resources
66 /////////////////////////////////////////////////////////////////////////////
OLDNEW
« no previous file with comments | « no previous file | remoting/host/elevated_controller_module_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698