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

Unified Diff: chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js

Issue 443333003: Show location, search button, and change-view button on the toolbar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/grid_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
diff --git a/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js b/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
index 03141bf77f0c74cc25a8c27e99b1e0a06468b7c1..ca7186d939b0a50e312dcdcac42bc4a7ed209d82 100644
--- a/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
+++ b/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
@@ -100,8 +100,8 @@ function waitForWindowGeometry(windowId, width, height) {
return callRemoteTestUtil('getWindows', null, []).then(function(windows) {
if (!windows[windowId])
return pending('Window %s is not found.', windowId);
- if (windows[windowId].innerWidth !== width ||
- windows[windowId].innerHeight !== height) {
+ if (windows[windowId].outerWidth !== width ||
+ windows[windowId].outerHeight !== height) {
return pending('Expected window size is %j, but it is %j',
{width: width, height: height},
windows[windowId]);
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/grid_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698