OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef MOJO_SERVICES_GFX_COMPOSITION_CPP_FORMATTING_H_ | 5 #ifndef MOJO_SERVICES_GFX_COMPOSITION_CPP_FORMATTING_H_ |
6 #define MOJO_SERVICES_GFX_COMPOSITION_CPP_FORMATTING_H_ | 6 #define MOJO_SERVICES_GFX_COMPOSITION_CPP_FORMATTING_H_ |
7 | 7 |
8 #include "mojo/public/cpp/bindings/formatting.h" | 8 #include "mojo/public/cpp/bindings/formatting.h" |
9 #include "mojo/services/geometry/cpp/formatting.h" | 9 #include "mojo/services/geometry/cpp/formatting.h" |
10 #include "mojo/services/gfx/composition/interfaces/compositor.mojom.h" | 10 #include "mojo/services/gfx/composition/interfaces/compositor.mojom.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 std::ostream& operator<<(std::ostream& os, | 51 std::ostream& operator<<(std::ostream& os, |
52 const mojo::gfx::composition::Color& value); | 52 const mojo::gfx::composition::Color& value); |
53 | 53 |
54 std::ostream& operator<<(std::ostream& os, | 54 std::ostream& operator<<(std::ostream& os, |
55 const mojo::gfx::composition::Blend& value); | 55 const mojo::gfx::composition::Blend& value); |
56 | 56 |
57 std::ostream& operator<<(std::ostream& os, | 57 std::ostream& operator<<(std::ostream& os, |
58 const mojo::gfx::composition::FrameInfo& value); | 58 const mojo::gfx::composition::FrameInfo& value); |
59 | 59 |
| 60 std::ostream& operator<<(std::ostream& os, |
| 61 const mojo::gfx::composition::HitTestBehavior& value); |
| 62 std::ostream& operator<<( |
| 63 std::ostream& os, |
| 64 const mojo::gfx::composition::HitTestBehavior::Visibility* value); |
| 65 std::ostream& operator<<(std::ostream& os, |
| 66 const mojo::gfx::composition::HitTestResult& value); |
| 67 std::ostream& operator<<(std::ostream& os, |
| 68 const mojo::gfx::composition::Hit& value); |
| 69 std::ostream& operator<<(std::ostream& os, |
| 70 const mojo::gfx::composition::SceneHit& value); |
| 71 std::ostream& operator<<(std::ostream& os, |
| 72 const mojo::gfx::composition::NodeHit& value); |
| 73 |
60 } // namespace composition | 74 } // namespace composition |
61 } // namespace gfx | 75 } // namespace gfx |
62 } // namespace mojo | 76 } // namespace mojo |
63 | 77 |
64 #endif // MOJO_SERVICES_GFX_COMPOSITION_CPP_FORMATTING_H_ | 78 #endif // MOJO_SERVICES_GFX_COMPOSITION_CPP_FORMATTING_H_ |
OLD | NEW |