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

Side by Side Diff: ui/views/widget/desktop_aura/desktop_window_tree_host_win.h

Issue 1125193004: Simplify accelerated paint and remove windows CanvasSkiaPaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_
7 7
8 #include "ui/aura/window_tree_host.h" 8 #include "ui/aura/window_tree_host.h"
9 #include "ui/views/views_export.h" 9 #include "ui/views/views_export.h"
10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" 10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h"
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 bool HandleMouseEvent(const ui::MouseEvent& event) override; 177 bool HandleMouseEvent(const ui::MouseEvent& event) override;
178 bool HandleKeyEvent(const ui::KeyEvent& event) override; 178 bool HandleKeyEvent(const ui::KeyEvent& event) override;
179 bool HandleUntranslatedKeyEvent(const ui::KeyEvent& event) override; 179 bool HandleUntranslatedKeyEvent(const ui::KeyEvent& event) override;
180 void HandleTouchEvent(const ui::TouchEvent& event) override; 180 void HandleTouchEvent(const ui::TouchEvent& event) override;
181 bool HandleIMEMessage(UINT message, 181 bool HandleIMEMessage(UINT message,
182 WPARAM w_param, 182 WPARAM w_param,
183 LPARAM l_param, 183 LPARAM l_param,
184 LRESULT* result) override; 184 LRESULT* result) override;
185 void HandleInputLanguageChange(DWORD character_set, 185 void HandleInputLanguageChange(DWORD character_set,
186 HKL input_language_id) override; 186 HKL input_language_id) override;
187 bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) override; 187 void HandlePaintAccelerated(const gfx::Rect& invalid_rect) override;
188 void HandlePaint(gfx::Canvas* canvas) override;
189 bool HandleTooltipNotify(int w_param, 188 bool HandleTooltipNotify(int w_param,
190 NMHDR* l_param, 189 NMHDR* l_param,
191 LRESULT* l_result) override; 190 LRESULT* l_result) override;
192 void HandleMenuLoop(bool in_menu_loop) override; 191 void HandleMenuLoop(bool in_menu_loop) override;
193 bool PreHandleMSG(UINT message, 192 bool PreHandleMSG(UINT message,
194 WPARAM w_param, 193 WPARAM w_param,
195 LPARAM l_param, 194 LPARAM l_param,
196 LRESULT* result) override; 195 LRESULT* result) override;
197 void PostHandleMSG(UINT message, WPARAM w_param, LPARAM l_param) override; 196 void PostHandleMSG(UINT message, WPARAM w_param, LPARAM l_param) override;
198 bool HandleScrollEvent(const ui::ScrollEvent& event) override; 197 bool HandleScrollEvent(const ui::ScrollEvent& event) override;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 266
268 // Set to true if we are about to enter a sizing loop. 267 // Set to true if we are about to enter a sizing loop.
269 bool in_sizing_loop_; 268 bool in_sizing_loop_;
270 269
271 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); 270 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin);
272 }; 271 };
273 272
274 } // namespace views 273 } // namespace views
275 274
276 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ 275 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_
OLDNEW
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698