OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "build/build_config.h" |
5 #include "chrome/browser/apps/app_browsertest_util.h" | 6 #include "chrome/browser/apps/app_browsertest_util.h" |
6 #include "extensions/browser/app_window/native_app_window.h" | 7 #include "extensions/browser/app_window/native_app_window.h" |
7 | 8 |
8 namespace extensions { | 9 namespace extensions { |
9 | 10 |
10 namespace { | 11 namespace { |
11 | 12 |
12 typedef PlatformAppBrowserTest AppWindowBrowserTest; | 13 typedef PlatformAppBrowserTest AppWindowBrowserTest; |
13 | 14 |
14 // This test is disabled on Linux because of the unpredictable nature of native | 15 // This test is disabled on Linux because of the unpredictable nature of native |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 EXPECT_EQ(0, insets.bottom()); | 62 EXPECT_EQ(0, insets.bottom()); |
62 EXPECT_EQ(0, insets.left()); | 63 EXPECT_EQ(0, insets.left()); |
63 EXPECT_EQ(0, insets.right()); | 64 EXPECT_EQ(0, insets.right()); |
64 | 65 |
65 CloseAppWindow(app_window); | 66 CloseAppWindow(app_window); |
66 } | 67 } |
67 | 68 |
68 } // namespace | 69 } // namespace |
69 | 70 |
70 } // namespace extensions | 71 } // namespace extensions |
OLD | NEW |