summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views
diff options
context:
space:
mode:
authordpolukhin@chromium.org <dpolukhin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-21 11:23:31 +0000
committerdpolukhin@chromium.org <dpolukhin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-21 11:23:31 +0000
commit970e30dc8789352e51963fd205f79a317e9d3ec4 (patch)
tree1814a47c844b3aa2f4daa2ff718eabc6d6b84617 /chrome/browser/views
parent633877bd6ded864ddc9d89487a7e34c1fcf0b17f (diff)
downloadchromium_src-970e30dc8789352e51963fd205f79a317e9d3ec4.zip
chromium_src-970e30dc8789352e51963fd205f79a317e9d3ec4.tar.gz
chromium_src-970e30dc8789352e51963fd205f79a317e9d3ec4.tar.bz2
Revert revisions 47902 and 47900.
Chrome UI blinks after replacement of gtk_widget_set_size_request with gtk_widget_size_allocate on resizing or infobar appearing animation. It happens because gtk_widget_size_allocate results in background resizing on message loop idle. It looks like we can't use gtk_widget_size_allocate at this place at all. Review URL: http://codereview.chromium.org/2131021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47913 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views')
-rw-r--r--chrome/browser/views/find_bar_host_interactive_uitest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/find_bar_host_interactive_uitest.cc b/chrome/browser/views/find_bar_host_interactive_uitest.cc
index 9636a89..2933ad39 100644
--- a/chrome/browser/views/find_bar_host_interactive_uitest.cc
+++ b/chrome/browser/views/find_bar_host_interactive_uitest.cc
@@ -106,7 +106,7 @@ IN_PROC_BROWSER_TEST_F(FindInPageTest, CrashEscHandlers) {
// Click on the location bar so that Find box loses focus.
ClickOnView(VIEW_ID_LOCATION_BAR);
-#if defined(OS_WIN)
+#if defined(TOOLKIT_VIEWS) || defined(OS_WIN)
// Check the location bar is focused.
EXPECT_EQ(VIEW_ID_LOCATION_BAR, GetFocusedViewID());
#endif