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

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: 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 side-by-side diff with in-line comments
Download patch
Index: views/controls/table/table_view_unittest.cc
===================================================================
--- views/controls/table/table_view_unittest.cc (revision 78547)
+++ views/controls/table/table_view_unittest.cc (working copy)
@@ -2,6 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#if defined(_WIN32) || defined(_WIN64) // OS_WIN
Mark Mentovai 2011/03/17 20:43:42 Can we #include "build/build_config.h" first and t
RN 2011/03/18 09:34:24 It's sort of a gray area in the google guidelines
Mark Mentovai 2011/03/18 14:54:47 RN wrote:
+#include <atlbase.h>
+#include <atlwin.h>
Mark Mentovai 2011/03/17 20:43:42 With this included, don’t you need "base/win/atlch
RN 2011/03/18 09:34:24 atlcheck.h is just for headers (added more docs to
+#endif
Mark Mentovai 2011/03/17 20:43:42 Blank line after this now.
RN 2011/03/18 09:34:24 Done.
#include <vector>
#include "base/compiler_specific.h"
@@ -21,7 +25,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.

Powered by Google App Engine
This is Rietveld 408576698