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

Unified Diff: chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc

Issue 8573029: Fixes regression where showing bookmark bar (or download shelf) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tweaks Created 9 years, 1 month 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
Index: chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc
diff --git a/chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc b/chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc
index 4fdaf774101ce7d31aa7d963e3fd5a0b854ff302..9fcde00e85e0c4451be2a7659a0d8c30e57832ca 100644
--- a/chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc
+++ b/chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc
@@ -47,6 +47,14 @@ void NativeTabContentsContainerGtk::SetFastResize(bool fast_resize) {
set_fast_resize(fast_resize);
}
+bool NativeTabContentsContainerGtk::GetFastResize() const {
+ return fast_resize();
+}
+
+bool NativeTabContentsContainerGtk::FastResizeAtLastLayout() const {
+ return fast_resize_at_last_layout();
+}
+
void NativeTabContentsContainerGtk::RenderViewHostChanged(
RenderViewHost* old_host,
RenderViewHost* new_host) {

Powered by Google App Engine
This is Rietveld 408576698