Index: gfx/window_impl.h |
=================================================================== |
--- gfx/window_impl.h (revision 67155) |
+++ gfx/window_impl.h (working copy) |
@@ -13,7 +13,7 @@ |
#include <string> |
-#include "base/logging.h" |
+#include "base/basictypes.h" |
#include "gfx/native_widget_types.h" |
#include "gfx/rect.h" |
@@ -64,11 +64,7 @@ |
DWORD window_ex_style() const { return window_ex_style_; } |
// Sets the class style to use. The default is CS_DBLCLKS. |
- void set_initial_class_style(UINT class_style) { |
- // We dynamically generate the class name, so don't register it globally! |
- DCHECK_EQ((class_style & CS_GLOBALCLASS), 0u); |
- class_style_ = class_style; |
- } |
+ void set_initial_class_style(UINT class_style); |
UINT initial_class_style() const { return class_style_; } |
// Returns true if the specified |hwnd| is a WindowImpl. |