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

Side by Side Diff: ui/views/widget/native_widget_win.h

Issue 10918015: Make HWNDMessageHandler build with use_aura==1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/views.gyp ('k') | ui/views/widget/native_widget_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_NATIVE_WIDGET_WIN_H_ 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 virtual void HandleEndWMSizeMove() OVERRIDE; 222 virtual void HandleEndWMSizeMove() OVERRIDE;
223 virtual void HandleMove() OVERRIDE; 223 virtual void HandleMove() OVERRIDE;
224 virtual void HandleWorkAreaChanged() OVERRIDE; 224 virtual void HandleWorkAreaChanged() OVERRIDE;
225 virtual void HandleVisibilityChanged(bool visible) OVERRIDE; 225 virtual void HandleVisibilityChanged(bool visible) OVERRIDE;
226 virtual void HandleClientSizeChanged(const gfx::Size& new_size) OVERRIDE; 226 virtual void HandleClientSizeChanged(const gfx::Size& new_size) OVERRIDE;
227 virtual void HandleFrameChanged() OVERRIDE; 227 virtual void HandleFrameChanged() OVERRIDE;
228 virtual void HandleNativeFocus(HWND last_focused_window) OVERRIDE; 228 virtual void HandleNativeFocus(HWND last_focused_window) OVERRIDE;
229 virtual void HandleNativeBlur(HWND focused_window) OVERRIDE; 229 virtual void HandleNativeBlur(HWND focused_window) OVERRIDE;
230 virtual bool HandleMouseEvent(const ui::MouseEvent& event) OVERRIDE; 230 virtual bool HandleMouseEvent(const ui::MouseEvent& event) OVERRIDE;
231 virtual bool HandleKeyEvent(const ui::KeyEvent& event) OVERRIDE; 231 virtual bool HandleKeyEvent(const ui::KeyEvent& event) OVERRIDE;
232 virtual bool HandleUntranslatedKeyEvent(const ui::KeyEvent& event) OVERRIDE;
233 virtual bool HandleIMEMessage(UINT message,
234 WPARAM w_param,
235 LPARAM l_param,
236 LRESULT* result) OVERRIDE;
237 virtual void HandleInputLanguageChange(DWORD character_set,
238 HKL input_language_id) OVERRIDE;
232 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE; 239 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE;
233 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE; 240 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE;
234 virtual void HandleScreenReaderDetected() OVERRIDE; 241 virtual void HandleScreenReaderDetected() OVERRIDE;
235 virtual bool HandleTooltipNotify(int w_param, 242 virtual bool HandleTooltipNotify(int w_param,
236 NMHDR* l_param, 243 NMHDR* l_param,
237 LRESULT* l_result) OVERRIDE; 244 LRESULT* l_result) OVERRIDE;
238 virtual void HandleTooltipMouseMove(UINT message, 245 virtual void HandleTooltipMouseMove(UINT message,
239 WPARAM w_param, 246 WPARAM w_param,
240 LPARAM l_param) OVERRIDE; 247 LPARAM l_param) OVERRIDE;
241 virtual bool PreHandleMSG(UINT message, 248 virtual bool PreHandleMSG(UINT message,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 bool has_non_client_view_; 302 bool has_non_client_view_;
296 303
297 scoped_ptr<HWNDMessageHandler> message_handler_; 304 scoped_ptr<HWNDMessageHandler> message_handler_;
298 305
299 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); 306 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin);
300 }; 307 };
301 308
302 } // namespace views 309 } // namespace views
303 310
304 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 311 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
OLDNEW
« no previous file with comments | « ui/views/views.gyp ('k') | ui/views/widget/native_widget_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698