OLD | NEW |
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 #include "ui/aura/env.h" | 5 #include "ui/aura/env.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "base/threading/thread_local.h" | 8 #include "base/threading/thread_local.h" |
9 #include "ui/aura/env_observer.h" | 9 #include "ui/aura/env_observer.h" |
10 #include "ui/aura/input_state_lookup.h" | 10 #include "ui/aura/input_state_lookup.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 // Env, ui::EventTarget implementation: | 104 // Env, ui::EventTarget implementation: |
105 | 105 |
106 bool Env::CanAcceptEvent(const ui::Event& event) { | 106 bool Env::CanAcceptEvent(const ui::Event& event) { |
107 return true; | 107 return true; |
108 } | 108 } |
109 | 109 |
110 ui::EventTarget* Env::GetParentTarget() { | 110 ui::EventTarget* Env::GetParentTarget() { |
111 return NULL; | 111 return NULL; |
112 } | 112 } |
113 | 113 |
114 scoped_ptr<ui::EventTargetIterator> Env::GetChildIterator() const { | 114 scoped_ptr<ui::EventTargetIterator> Env::GetChildIterator() { |
115 return scoped_ptr<ui::EventTargetIterator>(); | 115 return scoped_ptr<ui::EventTargetIterator>(); |
116 } | 116 } |
117 | 117 |
118 ui::EventTargeter* Env::GetEventTargeter() { | 118 ui::EventTargeter* Env::GetEventTargeter() { |
119 NOTREACHED(); | 119 NOTREACHED(); |
120 return NULL; | 120 return NULL; |
121 } | 121 } |
122 | 122 |
123 } // namespace aura | 123 } // namespace aura |
OLD | NEW |