Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: blimp/client/core/contents/tab_control_feature_unittest.cc

Issue 2201433002: Migrate TabControlFeature from 0.5 to 0.6 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: some more compile error fix Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « blimp/client/core/contents/tab_control_feature.cc ('k') | blimp/client/feature/tab_control_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698