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 #include "view_manager/public/cpp/view_observer.h" | 5 #include "view_manager/public/cpp/view_observer.h" |
6 | 6 |
7 #include "base/basictypes.h" | |
8 | |
9 namespace mojo { | 7 namespace mojo { |
10 | 8 |
11 //////////////////////////////////////////////////////////////////////////////// | 9 //////////////////////////////////////////////////////////////////////////////// |
12 // ViewObserver, public: | 10 // ViewObserver, public: |
13 | 11 |
14 ViewObserver::TreeChangeParams::TreeChangeParams() | 12 ViewObserver::TreeChangeParams::TreeChangeParams() |
15 : target(NULL), | 13 : target(nullptr), |
16 old_parent(NULL), | 14 old_parent(nullptr), |
17 new_parent(NULL), | 15 new_parent(nullptr), |
18 receiver(NULL) {} | 16 receiver(nullptr) { |
| 17 } |
19 | 18 |
20 } // namespace mojo | 19 } // namespace mojo |
OLD | NEW |