OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 #ifndef MOJO_SERVICES_UI_VIEWS_CPP_LOGGING_H_ |
| 6 #define MOJO_SERVICES_UI_VIEWS_CPP_LOGGING_H_ |
| 7 |
| 8 #include <iosfwd> |
| 9 |
| 10 #include "mojo/services/geometry/cpp/logging.h" |
| 11 #include "mojo/services/gfx/composition/cpp/logging.h" |
| 12 #include "mojo/services/ui/views/interfaces/view_associates.mojom.h" |
| 13 #include "mojo/services/ui/views/interfaces/view_manager.mojom.h" |
| 14 |
| 15 namespace mojo { |
| 16 namespace ui { |
| 17 |
| 18 std::ostream& operator<<(std::ostream& os, const mojo::ui::ViewToken& value); |
| 19 |
| 20 std::ostream& operator<<(std::ostream& os, |
| 21 const mojo::ui::ViewTreeToken& value); |
| 22 |
| 23 std::ostream& operator<<(std::ostream& os, |
| 24 const mojo::ui::BoxConstraints& value); |
| 25 std::ostream& operator<<(std::ostream& os, |
| 26 const mojo::ui::ViewLayoutParams& value); |
| 27 std::ostream& operator<<(std::ostream& os, |
| 28 const mojo::ui::ViewLayoutInfo& value); |
| 29 std::ostream& operator<<(std::ostream& os, |
| 30 const mojo::ui::ViewLayoutResult& value); |
| 31 |
| 32 std::ostream& operator<<(std::ostream& os, |
| 33 const mojo::ui::ViewAssociateInfo& value); |
| 34 |
| 35 } // namespace ui |
| 36 } // namespace mojo |
| 37 |
| 38 #endif // MOJO_SERVICES_UI_VIEWS_CPP_LOGGING_H_ |
OLD | NEW |