| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 VIEWS_WIDGET_WIDGET_WIN_H_ | 5 #ifndef VIEWS_WIDGET_WIDGET_WIN_H_ |
| 6 #define VIEWS_WIDGET_WIDGET_WIN_H_ | 6 #define VIEWS_WIDGET_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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 // A vector used to access views for which we have sent notifications to | 592 // A vector used to access views for which we have sent notifications to |
| 593 // accessibility clients. It is used as a circular queue. | 593 // accessibility clients. It is used as a circular queue. |
| 594 std::vector<View*> accessibility_view_events_; | 594 std::vector<View*> accessibility_view_events_; |
| 595 | 595 |
| 596 // The current position of the view events vector. When incrementing, | 596 // The current position of the view events vector. When incrementing, |
| 597 // we always mod this value with the max view events above . | 597 // we always mod this value with the max view events above . |
| 598 int accessibility_view_events_index_; | 598 int accessibility_view_events_index_; |
| 599 | 599 |
| 600 ViewProps props_; | 600 ViewProps props_; |
| 601 | 601 |
| 602 static std::vector<MSG>* current_messages_; |
| 603 |
| 602 DISALLOW_COPY_AND_ASSIGN(WidgetWin); | 604 DISALLOW_COPY_AND_ASSIGN(WidgetWin); |
| 603 }; | 605 }; |
| 604 | 606 |
| 605 } // namespace views | 607 } // namespace views |
| 606 | 608 |
| 607 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ | 609 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ |
| OLD | NEW |