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

Side by Side Diff: views/widget/widget_win.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 VIEWS_WIDGET_WIDGET_WIN_H_ 5 #ifndef VIEWS_WIDGET_WIDGET_WIN_H_
6 #define VIEWS_WIDGET_WIDGET_WIN_H_ 6 #define VIEWS_WIDGET_WIDGET_WIN_H_
7 #pragma once 7 #pragma once
8 8
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 <atlmisc.h> 12 #include <atlmisc.h>
13 13
14 #include <string> 14 #include <string>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/message_loop.h" 17 #include "base/message_loop.h"
18 #include "base/scoped_ptr.h" 18 #include "base/scoped_ptr.h"
19 #include "base/scoped_vector.h" 19 #include "base/scoped_vector.h"
20 #include "base/win/atlcheck.h"
20 #include "base/win/scoped_comptr.h" 21 #include "base/win/scoped_comptr.h"
21 #include "ui/base/win/window_impl.h" 22 #include "ui/base/win/window_impl.h"
22 #include "views/focus/focus_manager.h" 23 #include "views/focus/focus_manager.h"
23 #include "views/layout/layout_manager.h" 24 #include "views/layout/layout_manager.h"
24 #include "views/widget/native_widget.h" 25 #include "views/widget/native_widget.h"
25 #include "views/widget/widget.h" 26 #include "views/widget/widget.h"
26 27
27 namespace ui { 28 namespace ui {
28 class ViewProp; 29 class ViewProp;
29 } 30 }
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 gfx::NativeCursor previous_cursor_; 539 gfx::NativeCursor previous_cursor_;
539 540
540 ViewProps props_; 541 ViewProps props_;
541 542
542 DISALLOW_COPY_AND_ASSIGN(WidgetWin); 543 DISALLOW_COPY_AND_ASSIGN(WidgetWin);
543 }; 544 };
544 545
545 } // namespace views 546 } // namespace views
546 547
547 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ 548 #endif // VIEWS_WIDGET_WIDGET_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698