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

Side by Side Diff: chrome/browser/tab_contents/tab_contents.h

Issue 3547008: Handle resize corner layout entirely in the platform BrowserWindow*/BrowserView* code... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 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_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 21 matching lines...) Expand all
32 #include "chrome/browser/tab_contents/navigation_controller.h" 32 #include "chrome/browser/tab_contents/navigation_controller.h"
33 #include "chrome/browser/tab_contents/navigation_entry.h" 33 #include "chrome/browser/tab_contents/navigation_entry.h"
34 #include "chrome/browser/tab_contents/page_navigator.h" 34 #include "chrome/browser/tab_contents/page_navigator.h"
35 #include "chrome/browser/tab_contents/render_view_host_manager.h" 35 #include "chrome/browser/tab_contents/render_view_host_manager.h"
36 #include "chrome/browser/tab_contents/tab_specific_content_settings.h" 36 #include "chrome/browser/tab_contents/tab_specific_content_settings.h"
37 #include "chrome/common/notification_registrar.h" 37 #include "chrome/common/notification_registrar.h"
38 #include "chrome/common/property_bag.h" 38 #include "chrome/common/property_bag.h"
39 #include "chrome/common/renderer_preferences.h" 39 #include "chrome/common/renderer_preferences.h"
40 #include "chrome/common/translate_errors.h" 40 #include "chrome/common/translate_errors.h"
41 #include "gfx/native_widget_types.h" 41 #include "gfx/native_widget_types.h"
42 #include "gfx/rect.h"
43 #include "net/base/load_states.h" 42 #include "net/base/load_states.h"
44 #include "webkit/glue/dom_operations.h" 43 #include "webkit/glue/dom_operations.h"
45 44
46 namespace gfx { 45 namespace gfx {
47 class Rect; 46 class Rect;
48 } 47 }
49 48
50 namespace history { 49 namespace history {
51 class HistoryAddPageArgs; 50 class HistoryAddPageArgs;
52 } 51 }
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 int32 page_id, 993 int32 page_id,
995 const GURL& url, 994 const GURL& url,
996 const ViewHostMsg_PageHasOSDD_Type& provider_type); 995 const ViewHostMsg_PageHasOSDD_Type& provider_type);
997 virtual GURL GetAlternateErrorPageURL() const; 996 virtual GURL GetAlternateErrorPageURL() const;
998 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; 997 virtual RendererPreferences GetRendererPrefs(Profile* profile) const;
999 virtual WebPreferences GetWebkitPrefs(); 998 virtual WebPreferences GetWebkitPrefs();
1000 virtual void OnIgnoredUIEvent(); 999 virtual void OnIgnoredUIEvent();
1001 virtual void OnJSOutOfMemory(); 1000 virtual void OnJSOutOfMemory();
1002 virtual void OnCrossSiteResponse(int new_render_process_host_id, 1001 virtual void OnCrossSiteResponse(int new_render_process_host_id,
1003 int new_request_id); 1002 int new_request_id);
1004 virtual gfx::Rect GetRootWindowResizerRect() const;
1005 virtual void RendererUnresponsive(RenderViewHost* render_view_host, 1003 virtual void RendererUnresponsive(RenderViewHost* render_view_host,
1006 bool is_during_unload); 1004 bool is_during_unload);
1007 virtual void RendererResponsive(RenderViewHost* render_view_host); 1005 virtual void RendererResponsive(RenderViewHost* render_view_host);
1008 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state, 1006 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state,
1009 uint64 upload_position, uint64 upload_size); 1007 uint64 upload_position, uint64 upload_size);
1010 virtual bool IsExternalTabContainer() const; 1008 virtual bool IsExternalTabContainer() const;
1011 virtual void DidInsertCSS(); 1009 virtual void DidInsertCSS();
1012 virtual void FocusedNodeChanged(); 1010 virtual void FocusedNodeChanged();
1013 virtual void UpdateZoomLimits(int minimum_percent, 1011 virtual void UpdateZoomLimits(int minimum_percent,
1014 int maximum_percent, 1012 int maximum_percent,
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 // Content restrictions, used to disable print/copy etc based on content's 1313 // Content restrictions, used to disable print/copy etc based on content's
1316 // (full-page plugins for now only) permissions. 1314 // (full-page plugins for now only) permissions.
1317 int content_restrictions_; 1315 int content_restrictions_;
1318 1316
1319 // --------------------------------------------------------------------------- 1317 // ---------------------------------------------------------------------------
1320 1318
1321 DISALLOW_COPY_AND_ASSIGN(TabContents); 1319 DISALLOW_COPY_AND_ASSIGN(TabContents);
1322 }; 1320 };
1323 1321
1324 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1322 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698