Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: mojo/services/view_manager/public/cpp/lib/view_observer.cc

Issue 911073005: Drop all uses of //base except ObserverList from view mgr client lib (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698