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

Unified Diff: views/widget/root_view.cc

Issue 243076: Move the JPEG and PNG codecs from base/gfx to app/gfx/codec. Move the classes... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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/widget/root_view.cc
===================================================================
--- views/widget/root_view.cc (revision 27832)
+++ views/widget/root_view.cc (working copy)
@@ -54,26 +54,26 @@
/////////////////////////////////////////////////////////////////////////////
RootView::RootView(Widget* widget)
- : mouse_pressed_handler_(NULL),
- mouse_move_handler_(NULL),
- last_click_handler_(NULL),
- widget_(widget),
- invalid_rect_urgent_(false),
- pending_paint_task_(NULL),
- paint_task_needed_(false),
- explicit_mouse_handler_(false),
+ : mouse_pressed_handler_(NULL),
+ mouse_move_handler_(NULL),
+ last_click_handler_(NULL),
+ widget_(widget),
+ invalid_rect_urgent_(false),
+ pending_paint_task_(NULL),
+ paint_task_needed_(false),
+ explicit_mouse_handler_(false),
#if defined(OS_WIN)
- previous_cursor_(NULL),
+ previous_cursor_(NULL),
#endif
- default_keyboard_handler_(NULL),
- focus_on_mouse_pressed_(false),
- ignore_set_focus_calls_(false),
- focus_traversable_parent_(NULL),
- focus_traversable_parent_view_(NULL),
- drag_view_(NULL)
+ default_keyboard_handler_(NULL),
+ focus_on_mouse_pressed_(false),
+ ignore_set_focus_calls_(false),
+ focus_traversable_parent_(NULL),
+ focus_traversable_parent_view_(NULL),
+ drag_view_(NULL)
#ifndef NDEBUG
- ,
- is_processing_paint_(false)
+ ,
+ is_processing_paint_(false)
#endif
{
}

Powered by Google App Engine
This is Rietveld 408576698