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

Side by Side Diff: chrome/browser/ui/views/tab_contents/tab_contents_container_native.h

Issue 6024007: First cut at creating a refactored version of tab_contents_views. This is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with current head 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_NATIVE_H_
6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_NATIVE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_container.h" 9 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_container.h"
10 #include "chrome/common/notification_observer.h" 10 #include "chrome/common/notification_observer.h"
11 #include "chrome/common/notification_registrar.h" 11 #include "chrome/common/notification_registrar.h"
12 #include "views/view.h" 12 #include "views/view.h"
13 13
14 class NativeTabContentsContainer; 14 class NativeTabContentsContainer;
15 class RenderViewHost; 15 class RenderViewHost;
16 class RenderWidgetHostView; 16 class RenderWidgetHostView;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 NotificationRegistrar registrar_; 84 NotificationRegistrar registrar_;
85 85
86 // The current reserved rect in view coordinates where contents should not be 86 // The current reserved rect in view coordinates where contents should not be
87 // rendered to draw the resize corner, sidebar mini tabs etc. 87 // rendered to draw the resize corner, sidebar mini tabs etc.
88 // Cached here to update ever changing renderers. 88 // Cached here to update ever changing renderers.
89 gfx::Rect cached_reserved_rect_; 89 gfx::Rect cached_reserved_rect_;
90 90
91 DISALLOW_COPY_AND_ASSIGN(TabContentsContainer); 91 DISALLOW_COPY_AND_ASSIGN(TabContentsContainer);
92 }; 92 };
93 93
94 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ 94 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_NATIVE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698