Home | History | Annotate | Download | only in src
      1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "ui/v2/public/view_observer.h"
      6 
      7 #include "base/basictypes.h"
      8 
      9 namespace v2 {
     10 
     11 ////////////////////////////////////////////////////////////////////////////////
     12 // ViewObserver, public:
     13 
     14 ViewObserver::TreeChangeParams::TreeChangeParams()
     15     : target(NULL),
     16       old_parent(NULL),
     17       new_parent(NULL),
     18       receiver(NULL),
     19       phase(ViewObserver::DISPOSITION_CHANGING) {}
     20 
     21 }  // namespace v2
     22