| 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/feature/tab_control_feature.h" | 5 #include "blimp/client/core/contents/tab_control_feature.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "blimp/common/proto/blimp_message.pb.h" | 11 #include "blimp/common/proto/blimp_message.pb.h" |
| 12 #include "blimp/common/proto/tab_control.pb.h" | 12 #include "blimp/common/proto/tab_control.pb.h" |
| 13 #include "blimp/net/test_common.h" | 13 #include "blimp/net/test_common.h" |
| 14 #include "net/base/net_errors.h" | 14 #include "net/base/net_errors.h" |
| 15 #include "testing/gmock/include/gmock/gmock.h" | 15 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 feature_.SetSizeAndScale(gfx::Size(width, height), dp_to_px); | 85 feature_.SetSizeAndScale(gfx::Size(width, height), dp_to_px); |
| 86 feature_.SetSizeAndScale(gfx::Size(width, height), dp_to_px); | 86 feature_.SetSizeAndScale(gfx::Size(width, height), dp_to_px); |
| 87 feature_.SetSizeAndScale(gfx::Size(width, height), dp_to_px + 1); | 87 feature_.SetSizeAndScale(gfx::Size(width, height), dp_to_px + 1); |
| 88 feature_.SetSizeAndScale(gfx::Size(width + 1, height), dp_to_px + 1); | 88 feature_.SetSizeAndScale(gfx::Size(width + 1, height), dp_to_px + 1); |
| 89 feature_.SetSizeAndScale(gfx::Size(width + 1, height + 1), dp_to_px + 1); | 89 feature_.SetSizeAndScale(gfx::Size(width + 1, height + 1), dp_to_px + 1); |
| 90 } | 90 } |
| 91 | 91 |
| 92 } // namespace client | 92 } // namespace client |
| 93 } // namespace blimp | 93 } // namespace blimp |
| OLD | NEW |