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

Side by Side Diff: Source/WebKit/chromium/src/ChromeClientImpl.h

Issue 8714006: Add autoresize capability for Chromium. (Closed) Base URL: http://git.chromium.org/external/WebKit_trimmed.git@master
Patch Set: Created 9 years 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&, bool); 110 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&, bool);
111 #if ENABLE(REQUEST_ANIMATION_FRAME) 111 #if ENABLE(REQUEST_ANIMATION_FRAME)
112 virtual void scheduleAnimation(); 112 virtual void scheduleAnimation();
113 #endif 113 #endif
114 virtual void scroll( 114 virtual void scroll(
115 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScrol l, 115 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScrol l,
116 const WebCore::IntRect& clipRect); 116 const WebCore::IntRect& clipRect);
117 virtual WebCore::IntPoint screenToRootView(const WebCore::IntPoint&) const; 117 virtual WebCore::IntPoint screenToRootView(const WebCore::IntPoint&) const;
118 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const; 118 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const;
119 virtual PlatformPageClient platformPageClient() const { return 0; } 119 virtual PlatformPageClient platformPageClient() const { return 0; }
120 virtual void layoutBeforeScrollbarUpdate(WebCore::Frame*);
120 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) c onst; 121 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) c onst;
121 virtual void layoutUpdated(WebCore::Frame*) const; 122 virtual void layoutUpdated(WebCore::Frame*) const;
122 virtual void scrollRectIntoView( 123 virtual void scrollRectIntoView(
123 const WebCore::IntRect&) const { } 124 const WebCore::IntRect&) const { }
124 virtual void scrollbarsModeDidChange() const; 125 virtual void scrollbarsModeDidChange() const;
125 virtual void mouseDidMoveOverElement( 126 virtual void mouseDidMoveOverElement(
126 const WebCore::HitTestResult& result, unsigned modifierFlags); 127 const WebCore::HitTestResult& result, unsigned modifierFlags);
127 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti on); 128 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti on);
128 virtual void print(WebCore::Frame*); 129 virtual void print(WebCore::Frame*);
129 virtual void exceededDatabaseQuota( 130 virtual void exceededDatabaseQuota(
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 bool m_toolbarsVisible; 208 bool m_toolbarsVisible;
208 bool m_statusbarVisible; 209 bool m_statusbarVisible;
209 bool m_scrollbarsVisible; 210 bool m_scrollbarsVisible;
210 bool m_menubarVisible; 211 bool m_menubarVisible;
211 bool m_resizable; 212 bool m_resizable;
212 }; 213 };
213 214
214 } // namespace WebKit 215 } // namespace WebKit
215 216
216 #endif 217 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698