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

Unified Diff: chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.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_aura.cc
diff --git a/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc b/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc
index b999e7012284ef23efdc59024204607c6427a398..b020939f8788d30d09b3b469e4e7cbb1284584c1 100644
--- a/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc
+++ b/chrome/browser/ui/views/tab_contents/native_tab_contents_container_aura.cc
@@ -48,7 +48,15 @@ void NativeTabContentsContainerAura::DetachContents(TabContents* contents) {
}
void NativeTabContentsContainerAura::SetFastResize(bool fast_resize) {
- NOTIMPLEMENTED();
+ set_fast_resize(fast_resize);
+}
+
+bool NativeTabContentsContainerAura::GetFastResize() const {
+ return fast_resize();
+}
+
+bool NativeTabContentsContainerAura::FastResizeAtLastLayout() const {
+ return fast_resize_at_last_layout();
}
void NativeTabContentsContainerAura::RenderViewHostChanged(

Powered by Google App Engine
This is Rietveld 408576698