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

Side by Side Diff: chrome/browser/ui/views/about_ipc_dialog.h

Issue 6676030: WinDDK ATL and MSVC express compatability (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: common.gypi: use gyp defines instead of direct compiler flags; _SECURE_ATL conditional handling 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_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_
6 #define CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ 6 #define CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_
7 #pragma once 7 #pragma once
8 8
9 #if defined(OS_WIN) && defined(IPC_MESSAGE_LOG_ENABLED) 9 #if defined(OS_WIN) && defined(IPC_MESSAGE_LOG_ENABLED)
10 10
11 #include <atlbase.h> 11 #include <atlbase.h>
12 #include <atlapp.h> 12 #include <atlapp.h>
13 #include <atlwin.h> 13 #include <atlwin.h>
14 #include <atlctrls.h> 14 #include <atlctrls.h>
15 15
16 #include "base/singleton.h" 16 #include "base/singleton.h"
17 #include "base/win/atlcheck.h"
17 #include "ipc/ipc_logging.h" 18 #include "ipc/ipc_logging.h"
18 #include "views/controls/button/button.h" 19 #include "views/controls/button/button.h"
19 #include "views/controls/table/table_view.h" 20 #include "views/controls/table/table_view.h"
20 #include "views/window/dialog_delegate.h" 21 #include "views/window/dialog_delegate.h"
21 22
22 23
23 class Profile; 24 class Profile;
24 namespace views { 25 namespace views {
25 class NativeViewHost; 26 class NativeViewHost;
26 class TextButton; 27 class TextButton;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 71
71 // Set to true when we're tracking network status. 72 // Set to true when we're tracking network status.
72 bool tracking_; 73 bool tracking_;
73 74
74 DISALLOW_COPY_AND_ASSIGN(AboutIPCDialog); 75 DISALLOW_COPY_AND_ASSIGN(AboutIPCDialog);
75 }; 76 };
76 77
77 #endif // OS_WIN && IPC_MESSAGE_LOG_ENABLED 78 #endif // OS_WIN && IPC_MESSAGE_LOG_ENABLED
78 79
79 #endif // CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ 80 #endif // CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698