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

Side by Side Diff: chrome_frame/find_dialog.h

Issue 6676030: WinDDK ATL and MSVC express compatability (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Address comments: -EXPRESS define, memset always implemented, coding style Created 9 years, 9 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_FRAME_FIND_DIALOG_H_ 5 #ifndef CHROME_FRAME_FIND_DIALOG_H_
6 #define CHROME_FRAME_FIND_DIALOG_H_ 6 #define CHROME_FRAME_FIND_DIALOG_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlwin.h> 9 #include <atlwin.h>
10 10
11 #include "base/ref_counted.h" 11 #include "base/ref_counted.h"
12 #include "base/win/atlcheck.h"
12 #include "resource.h" 13 #include "resource.h"
13 #include "grit/generated_resources.h" 14 #include "grit/generated_resources.h"
14 15
15 class ChromeFrameAutomationClient; 16 class ChromeFrameAutomationClient;
16 17
17 class CFFindDialog : public CDialogImpl<CFFindDialog> { 18 class CFFindDialog : public CDialogImpl<CFFindDialog> {
18 public: 19 public:
19 enum { IDD = IDD_CHROME_FRAME_FIND_DIALOG }; 20 enum { IDD = IDD_CHROME_FRAME_FIND_DIALOG };
20 21
21 BEGIN_MSG_MAP(CFFindDialog) 22 BEGIN_MSG_MAP(CFFindDialog)
(...skipping 23 matching lines...) Expand all
45 bool InstallMessageHook(); 46 bool InstallMessageHook();
46 bool UninstallMessageHook(); 47 bool UninstallMessageHook();
47 static LRESULT CALLBACK GetMsgProc(int code, WPARAM wparam, LPARAM lparam); 48 static LRESULT CALLBACK GetMsgProc(int code, WPARAM wparam, LPARAM lparam);
48 static HHOOK msg_hook_; 49 static HHOOK msg_hook_;
49 50
50 // We don't own these, and they must exist at least as long as we do. 51 // We don't own these, and they must exist at least as long as we do.
51 scoped_refptr<ChromeFrameAutomationClient> automation_client_; 52 scoped_refptr<ChromeFrameAutomationClient> automation_client_;
52 }; 53 };
53 54
54 #endif // CHROME_FRAME_FIND_DIALOG_H_ 55 #endif // CHROME_FRAME_FIND_DIALOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698