| Index: ui/aura/test/test_window_delegate.cc
|
| diff --git a/ui/aura/test/test_window_delegate.cc b/ui/aura/test/test_window_delegate.cc
|
| index b179fda6960a70de62afbf36d53a1a2cfc68dd31..0565bb36ac99034d3ebc348c91c167b915a7d431 100644
|
| --- a/ui/aura/test/test_window_delegate.cc
|
| +++ b/ui/aura/test/test_window_delegate.cc
|
| @@ -16,7 +16,7 @@ namespace test {
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // TestWindowDelegate
|
|
|
| -TestWindowDelegate::TestWindowDelegate() {
|
| +TestWindowDelegate::TestWindowDelegate() : accept_events_(true) {
|
| }
|
|
|
| TestWindowDelegate::~TestWindowDelegate() {
|
| @@ -56,6 +56,10 @@ bool TestWindowDelegate::ShouldActivate(Event* event) {
|
| return true;
|
| }
|
|
|
| +bool TestWindowDelegate::ShouldAcceptEvents() {
|
| + return accept_events_;
|
| +}
|
| +
|
| void TestWindowDelegate::OnActivated() {
|
| }
|
|
|
|
|