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

Side by Side Diff: chrome/browser/extensions/api/app_window/app_window_apitest.cc

Issue 11369039: Add setBounds method and browsertest for get/set bounds to app window API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/extensions/api/app_window/app_window_api.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/string_number_conversions.h"
6 #include "chrome/browser/extensions/extension_test_message_listener.h"
7 #include "chrome/browser/extensions/platform_app_browsertest_util.h"
8 #include "chrome/browser/ui/base_window.h"
9 #include "chrome/browser/ui/extensions/shell_window.h"
10 #include "ui/gfx/rect.h"
11
12 namespace extensions {
13
14 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, WindowsApiBounds) {
15 ExtensionTestMessageListener background_listener("background_ok", false);
16 ExtensionTestMessageListener ready_listener("ready", true /* will_reply */);
17 ExtensionTestMessageListener success_listener("success", false);
18
19 LoadAndLaunchPlatformApp("windows_api_bounds");
20 ASSERT_TRUE(background_listener.WaitUntilSatisfied());
21 ASSERT_TRUE(ready_listener.WaitUntilSatisfied());
22 ShellWindow* window = GetFirstShellWindow();
23
24 gfx::Rect new_bounds(100, 200, 300, 400);
25 window->GetBaseWindow()->SetBounds(new_bounds);
26
27 // TODO(jeremya/asargent) figure out why in GTK the window doesn't end up
28 // with exactly the bounds we set. Is it a bug in our shell window
29 // implementation? crbug.com/160252
30 #ifdef TOOLKIT_GTK
31 int slop = 50;
32 #else
33 int slop = 0;
34 #endif // !TOOLKIT_GTK
35
36 ready_listener.Reply(base::IntToString(slop));
37 ASSERT_TRUE(success_listener.WaitUntilSatisfied());
38 }
39
40 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/app_window/app_window_api.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698