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

Unified Diff: gfx/window_impl.cc

Issue 5139006: FBTF: Remove unneeded headers from base/ (part 10) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac, cros build Created 10 years, 1 month 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 | « gfx/window_impl.h ('k') | gpu/command_buffer/service/buffer_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gfx/window_impl.cc
===================================================================
--- gfx/window_impl.cc (revision 67155)
+++ gfx/window_impl.cc (working copy)
@@ -6,6 +6,7 @@
#include <list>
+#include "base/logging.h"
#include "base/singleton.h"
#include "base/string_number_conversions.h"
#include "base/win_util.h"
@@ -152,6 +153,12 @@
return NULL;
}
+void WindowImpl::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;
+}
+
// static
bool WindowImpl::IsWindowImpl(HWND hwnd) {
wchar_t tmp[128];
« no previous file with comments | « gfx/window_impl.h ('k') | gpu/command_buffer/service/buffer_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698