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

Unified Diff: views/controls/table/table_view_unittest.cc

Issue 6676030: WinDDK ATL and MSVC express compatability (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Take out atlcheck; VC2005e compat 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/grit/grit/tool/resize.py ('k') | webkit/plugins/npapi/test/npapi_test.rc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/table/table_view_unittest.cc
===================================================================
--- views/controls/table/table_view_unittest.cc (revision 78845)
+++ views/controls/table/table_view_unittest.cc (working copy)
@@ -2,8 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <vector>
+// Intentional header placing, including ATL, to avoid errors
+#include "build/build_config.h" // NOLINT
+#if defined(OS_WIN)
+#include <atlbase.h> // NOLINT
+#include <atlwin.h> // NOLINT
+#endif
+
+#include <vector> // NOLINT
+
#include "base/compiler_specific.h"
#include "base/message_loop.h"
#include "base/string_number_conversions.h"
@@ -21,7 +29,7 @@
#endif
using ui::TableModel;
-using ui::TableModelObserver; // TODO(beng): remove these
+using ui::TableModelObserver; // TODO(beng): remove these
// Put the tests in the views namespace to make it easier to declare them as
// friend classes.
« no previous file with comments | « tools/grit/grit/tool/resize.py ('k') | webkit/plugins/npapi/test/npapi_test.rc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698