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

Side by Side Diff: chrome/browser/ui/views/tab_contents/tab_contents_container_views.cc

Issue 6360014: views: Move fill_layout.[cc,h] into layout directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/tab_contents/tab_contents_container.h" 5 #include "chrome/browser/ui/views/tab_contents/tab_contents_container.h"
6 6
7 #include "chrome/browser/renderer_host/render_view_host.h" 7 #include "chrome/browser/renderer_host/render_view_host.h"
8 #include "chrome/browser/renderer_host/render_widget_host_view.h" 8 #include "chrome/browser/renderer_host/render_widget_host_view.h"
9 #include "chrome/browser/tab_contents/interstitial_page.h" 9 #include "chrome/browser/tab_contents/interstitial_page.h"
10 #include "chrome/browser/tab_contents/tab_contents.h" 10 #include "chrome/browser/tab_contents/tab_contents.h"
11 #include "chrome/browser/ui/view_ids.h" 11 #include "chrome/browser/ui/view_ids.h"
12 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk .h" 12 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_container_gtk .h"
13 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_container.h" 13 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_container.h"
14 #include "chrome/browser/ui/views/tab_contents/tab_contents_view_views.h" 14 #include "chrome/browser/ui/views/tab_contents/tab_contents_view_views.h"
15 #include "chrome/common/notification_details.h" 15 #include "chrome/common/notification_details.h"
16 #include "chrome/common/notification_source.h" 16 #include "chrome/common/notification_source.h"
17 #include "views/fill_layout.h" 17 #include "views/layout/fill_layout.h"
18 18
19 // Some of this class is implemented in tab_contents_container.cc, where 19 // Some of this class is implemented in tab_contents_container.cc, where
20 // the implementation doesn't vary between a pure views approach and a 20 // the implementation doesn't vary between a pure views approach and a
21 // native view host approach. See the header file for details. 21 // native view host approach. See the header file for details.
22 22
23 //////////////////////////////////////////////////////////////////////////////// 23 ////////////////////////////////////////////////////////////////////////////////
24 // TabContentsContainer, public: 24 // TabContentsContainer, public:
25 25
26 TabContentsContainer::TabContentsContainer() 26 TabContentsContainer::TabContentsContainer()
27 : tab_contents_(NULL) { 27 : tab_contents_(NULL) {
(...skipping 29 matching lines...) Expand all
57 void TabContentsContainer::TabContentsFocused(TabContents* tab_contents) { 57 void TabContentsContainer::TabContentsFocused(TabContents* tab_contents) {
58 } 58 }
59 59
60 void TabContentsContainer::SetFastResize(bool fast_resize) { 60 void TabContentsContainer::SetFastResize(bool fast_resize) {
61 } 61 }
62 62
63 void TabContentsContainer::RenderViewHostChanged(RenderViewHost* old_host, 63 void TabContentsContainer::RenderViewHostChanged(RenderViewHost* old_host,
64 RenderViewHost* new_host) { 64 RenderViewHost* new_host) {
65 NOTIMPLEMENTED(); // TODO(anicolao) 65 NOTIMPLEMENTED(); // TODO(anicolao)
66 } 66 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/info_bubble.cc ('k') | chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698