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

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

Issue 10562025: aura: Fix WidgetFocusChangeListener::OnNativeFocusChange(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge again Created 8 years, 6 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
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 #pragma once 7 #pragma once
8 8
9 #include <atlbase.h> 9 #include <atlbase.h>
10 #include <atlapp.h> 10 #include <atlapp.h>
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 virtual void OnNCPaint(HRGN rgn); 420 virtual void OnNCPaint(HRGN rgn);
421 virtual LRESULT OnNCUAHDrawCaption(UINT msg, 421 virtual LRESULT OnNCUAHDrawCaption(UINT msg,
422 WPARAM w_param, 422 WPARAM w_param,
423 LPARAM l_param); 423 LPARAM l_param);
424 virtual LRESULT OnNCUAHDrawFrame(UINT msg, WPARAM w_param, LPARAM l_param); 424 virtual LRESULT OnNCUAHDrawFrame(UINT msg, WPARAM w_param, LPARAM l_param);
425 virtual LRESULT OnNotify(int w_param, NMHDR* l_param); 425 virtual LRESULT OnNotify(int w_param, NMHDR* l_param);
426 virtual void OnPaint(HDC dc); 426 virtual void OnPaint(HDC dc);
427 virtual LRESULT OnPowerBroadcast(DWORD power_event, DWORD data); 427 virtual LRESULT OnPowerBroadcast(DWORD power_event, DWORD data);
428 virtual LRESULT OnReflectedMessage(UINT msg, WPARAM w_param, LPARAM l_param); 428 virtual LRESULT OnReflectedMessage(UINT msg, WPARAM w_param, LPARAM l_param);
429 virtual LRESULT OnSetCursor(UINT message, WPARAM w_param, LPARAM l_param); 429 virtual LRESULT OnSetCursor(UINT message, WPARAM w_param, LPARAM l_param);
430 virtual void OnSetFocus(HWND focused_window); 430 virtual void OnSetFocus(HWND old_focused_window);
431 virtual LRESULT OnSetText(const wchar_t* text); 431 virtual LRESULT OnSetText(const wchar_t* text);
432 virtual void OnSettingChange(UINT flags, const wchar_t* section); 432 virtual void OnSettingChange(UINT flags, const wchar_t* section);
433 virtual void OnSize(UINT param, const CSize& size); 433 virtual void OnSize(UINT param, const CSize& size);
434 virtual void OnSysCommand(UINT notification_code, CPoint click); 434 virtual void OnSysCommand(UINT notification_code, CPoint click);
435 virtual void OnThemeChanged(); 435 virtual void OnThemeChanged();
436 virtual LRESULT OnTouchEvent(UINT message, WPARAM w_param, LPARAM l_param); 436 virtual LRESULT OnTouchEvent(UINT message, WPARAM w_param, LPARAM l_param);
437 virtual void OnVScroll(int scroll_type, short position, HWND scrollbar); 437 virtual void OnVScroll(int scroll_type, short position, HWND scrollbar);
438 virtual void OnWindowPosChanging(WINDOWPOS* window_pos); 438 virtual void OnWindowPosChanging(WINDOWPOS* window_pos);
439 virtual void OnWindowPosChanged(WINDOWPOS* window_pos); 439 virtual void OnWindowPosChanged(WINDOWPOS* window_pos);
440 440
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 684
685 // The set of touch devices currently down. 685 // The set of touch devices currently down.
686 TouchIDs touch_ids_; 686 TouchIDs touch_ids_;
687 687
688 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); 688 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin);
689 }; 689 };
690 690
691 } // namespace views 691 } // namespace views
692 692
693 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 693 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698