| OLD | NEW |
| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 virtual void numWheelEventHandlersChanged(unsigned); | 227 virtual void numWheelEventHandlersChanged(unsigned); |
| 228 | 228 |
| 229 virtual bool shouldAutoscrollForDragAndDrop(WebCore::RenderBox* scrollable)
const OVERRIDE; | 229 virtual bool shouldAutoscrollForDragAndDrop(WebCore::RenderBox* scrollable)
const OVERRIDE; |
| 230 | 230 |
| 231 #if ENABLE(POINTER_LOCK) | 231 #if ENABLE(POINTER_LOCK) |
| 232 virtual bool requestPointerLock(); | 232 virtual bool requestPointerLock(); |
| 233 virtual void requestPointerUnlock(); | 233 virtual void requestPointerUnlock(); |
| 234 virtual bool isPointerLocked(); | 234 virtual bool isPointerLocked(); |
| 235 #endif | 235 #endif |
| 236 | 236 |
| 237 virtual void didAssociateFormControls(const Vector<WebCore::Element*>&) OVER
RIDE; | |
| 238 virtual bool shouldNotifyOnFormChanges() OVERRIDE; | |
| 239 | |
| 240 private: | 237 private: |
| 241 WebNavigationPolicy getNavigationPolicy(); | 238 WebNavigationPolicy getNavigationPolicy(); |
| 242 void getPopupMenuInfo(WebCore::PopupContainer*, WebPopupMenuInfo*); | 239 void getPopupMenuInfo(WebCore::PopupContainer*, WebPopupMenuInfo*); |
| 243 void setCursor(const WebCursorInfo&); | 240 void setCursor(const WebCursorInfo&); |
| 244 | 241 |
| 245 WebViewImpl* m_webView; // weak pointer | 242 WebViewImpl* m_webView; // weak pointer |
| 246 bool m_toolbarsVisible; | 243 bool m_toolbarsVisible; |
| 247 bool m_statusbarVisible; | 244 bool m_statusbarVisible; |
| 248 bool m_scrollbarsVisible; | 245 bool m_scrollbarsVisible; |
| 249 bool m_menubarVisible; | 246 bool m_menubarVisible; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 267 private: | 264 private: |
| 268 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 265 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
| 269 | 266 |
| 270 WebViewImpl* m_webView; | 267 WebViewImpl* m_webView; |
| 271 }; | 268 }; |
| 272 #endif | 269 #endif |
| 273 | 270 |
| 274 } // namespace WebKit | 271 } // namespace WebKit |
| 275 | 272 |
| 276 #endif | 273 #endif |
| OLD | NEW |