| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
| 6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 | 9 |
| 10 MSVC_PUSH_WARNING_LEVEL(0); | 10 MSVC_PUSH_WARNING_LEVEL(0); |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 virtual WebCore::IntRect windowResizerRect() const; | 95 virtual WebCore::IntRect windowResizerRect() const; |
| 96 | 96 |
| 97 virtual void repaint(const WebCore::IntRect&, bool contentChanged, | 97 virtual void repaint(const WebCore::IntRect&, bool contentChanged, |
| 98 bool immediate = false, bool repaintContentOnly = false); | 98 bool immediate = false, bool repaintContentOnly = false); |
| 99 virtual void scroll(const WebCore::IntSize& scrollDelta, | 99 virtual void scroll(const WebCore::IntSize& scrollDelta, |
| 100 const WebCore::IntRect& rectToScroll, | 100 const WebCore::IntRect& rectToScroll, |
| 101 const WebCore::IntRect& clipRect); | 101 const WebCore::IntRect& clipRect); |
| 102 virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&) const; | 102 virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&) const; |
| 103 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; | 103 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; |
| 104 virtual PlatformWidget platformWindow() const; | 104 virtual PlatformWidget platformWindow() const; |
| 105 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) con
st {} | 105 virtual void contentsSizeChanged(WebCore::Frame*, |
| 106 const WebCore::IntSize&) const; |
| 106 | 107 |
| 107 virtual void mouseDidMoveOverElement(const WebCore::HitTestResult& result, | 108 virtual void mouseDidMoveOverElement(const WebCore::HitTestResult& result, |
| 108 unsigned modifierFlags); | 109 unsigned modifierFlags); |
| 109 | 110 |
| 110 virtual void setToolTip(const WebCore::String& tooltip_text); | 111 virtual void setToolTip(const WebCore::String& tooltip_text); |
| 111 | 112 |
| 112 virtual void print(WebCore::Frame*); | 113 virtual void print(WebCore::Frame*); |
| 113 | 114 |
| 114 virtual void exceededDatabaseQuota(WebCore::Frame*, | 115 virtual void exceededDatabaseQuota(WebCore::Frame*, |
| 115 const WebCore::String& databaseName); | 116 const WebCore::String& databaseName); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 139 bool toolbars_visible_; | 140 bool toolbars_visible_; |
| 140 bool statusbar_visible_; | 141 bool statusbar_visible_; |
| 141 bool scrollbars_visible_; | 142 bool scrollbars_visible_; |
| 142 bool menubar_visible_; | 143 bool menubar_visible_; |
| 143 bool resizable_; | 144 bool resizable_; |
| 144 // Set to true if the next SetCursor is to be ignored. | 145 // Set to true if the next SetCursor is to be ignored. |
| 145 bool ignore_next_set_cursor_; | 146 bool ignore_next_set_cursor_; |
| 146 }; | 147 }; |
| 147 | 148 |
| 148 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ | 149 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ |
| OLD | NEW |