| 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 #include "blimp/client/session/render_widget_feature.h" | 5 #include "blimp/client/feature/render_widget_feature.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "blimp/common/create_blimp_message.h" | 9 #include "blimp/common/create_blimp_message.h" |
| 10 #include "blimp/common/proto/blimp_message.pb.h" | 10 #include "blimp/common/proto/blimp_message.pb.h" |
| 11 #include "blimp/common/proto/compositor.pb.h" | 11 #include "blimp/common/proto/compositor.pb.h" |
| 12 #include "blimp/common/proto/render_widget.pb.h" | 12 #include "blimp/common/proto/render_widget.pb.h" |
| 13 #include "blimp/net/test_common.h" | 13 #include "blimp/net/test_common.h" |
| 14 #include "cc/proto/compositor_message.pb.h" | 14 #include "cc/proto/compositor_message.pb.h" |
| 15 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 SendRenderWidgetMessage(&feature_, 1, 2U); | 127 SendRenderWidgetMessage(&feature_, 1, 2U); |
| 128 feature_.SendCompositorMessage(1, cc::proto::CompositorMessage()); | 128 feature_.SendCompositorMessage(1, cc::proto::CompositorMessage()); |
| 129 SendRenderWidgetMessage(&feature_, 1, 3U); | 129 SendRenderWidgetMessage(&feature_, 1, 3U); |
| 130 feature_.SendCompositorMessage(1, cc::proto::CompositorMessage()); | 130 feature_.SendCompositorMessage(1, cc::proto::CompositorMessage()); |
| 131 SendRenderWidgetMessage(&feature_, 2, 1U); | 131 SendRenderWidgetMessage(&feature_, 2, 1U); |
| 132 feature_.SendCompositorMessage(2, cc::proto::CompositorMessage()); | 132 feature_.SendCompositorMessage(2, cc::proto::CompositorMessage()); |
| 133 } | 133 } |
| 134 | 134 |
| 135 } // namespace client | 135 } // namespace client |
| 136 } // namespace blimp | 136 } // namespace blimp |
| OLD | NEW |