| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_CHROMEOS_EVENTS_EVENT_REWRITER_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EVENTS_EVENT_REWRITER_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_EVENTS_EVENT_REWRITER_CONTROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EVENTS_EVENT_REWRITER_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
| 13 #include "ui/aura/env_observer.h" | 14 #include "ui/aura/env_observer.h" |
| 14 #include "ui/events/event_rewriter.h" | 15 #include "ui/events/event_rewriter.h" |
| 15 | 16 |
| 16 namespace ui { | 17 namespace ui { |
| 17 class EventSource; | 18 class EventSource; |
| 18 } // namespace ui | 19 } // namespace ui |
| 19 | 20 |
| 20 namespace chromeos { | 21 namespace chromeos { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 50 // Whether the owned event rewriters have been added to existing | 51 // Whether the owned event rewriters have been added to existing |
| 51 // root windows; after this no more rewriters can be added. | 52 // root windows; after this no more rewriters can be added. |
| 52 bool initialized_; | 53 bool initialized_; |
| 53 | 54 |
| 54 DISALLOW_COPY_AND_ASSIGN(EventRewriterController); | 55 DISALLOW_COPY_AND_ASSIGN(EventRewriterController); |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 } // namespace chromeos | 58 } // namespace chromeos |
| 58 | 59 |
| 59 #endif // CHROME_BROWSER_CHROMEOS_EVENTS_EVENT_REWRITER_CONTROLLER_H_ | 60 #endif // CHROME_BROWSER_CHROMEOS_EVENTS_EVENT_REWRITER_CONTROLLER_H_ |
| OLD | NEW |