| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 virtual bool inspectorSetting(const WebString& key, WebString* value) const; | 236 virtual bool inspectorSetting(const WebString& key, WebString* value) const; |
| 237 virtual void setInspectorSetting(const WebString& key, | 237 virtual void setInspectorSetting(const WebString& key, |
| 238 const WebString& value); | 238 const WebString& value); |
| 239 virtual WebDevToolsAgent* devToolsAgent(); | 239 virtual WebDevToolsAgent* devToolsAgent(); |
| 240 virtual WebAccessibilityObject accessibilityObject(); | 240 virtual WebAccessibilityObject accessibilityObject(); |
| 241 virtual void applyAutofillSuggestions( | 241 virtual void applyAutofillSuggestions( |
| 242 const WebNode&, | 242 const WebNode&, |
| 243 const WebVector<WebString>& names, | 243 const WebVector<WebString>& names, |
| 244 const WebVector<WebString>& labels, | 244 const WebVector<WebString>& labels, |
| 245 const WebVector<WebString>& icons, | 245 const WebVector<WebString>& icons, |
| 246 const WebVector<int>& uniqueIDs, | 246 const WebVector<int>& itemIDs); |
| 247 int separatorIndex); | |
| 248 virtual void hidePopups(); | 247 virtual void hidePopups(); |
| 249 virtual void setScrollbarColors(unsigned inactiveColor, | 248 virtual void setScrollbarColors(unsigned inactiveColor, |
| 250 unsigned activeColor, | 249 unsigned activeColor, |
| 251 unsigned trackColor); | 250 unsigned trackColor); |
| 252 virtual void setSelectionColors(unsigned activeBackgroundColor, | 251 virtual void setSelectionColors(unsigned activeBackgroundColor, |
| 253 unsigned activeForegroundColor, | 252 unsigned activeForegroundColor, |
| 254 unsigned inactiveBackgroundColor, | 253 unsigned inactiveBackgroundColor, |
| 255 unsigned inactiveForegroundColor); | 254 unsigned inactiveForegroundColor); |
| 256 virtual void performCustomContextMenuAction(unsigned action); | 255 virtual void performCustomContextMenuAction(unsigned action); |
| 257 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */); | 256 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */); |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 #endif | 755 #endif |
| 757 OwnPtr<WebCore::ActivePlatformGestureAnimation> m_gestureAnimation; | 756 OwnPtr<WebCore::ActivePlatformGestureAnimation> m_gestureAnimation; |
| 758 WebPoint m_lastWheelPosition; | 757 WebPoint m_lastWheelPosition; |
| 759 WebPoint m_lastWheelGlobalPosition; | 758 WebPoint m_lastWheelGlobalPosition; |
| 760 int m_flingModifier; | 759 int m_flingModifier; |
| 761 }; | 760 }; |
| 762 | 761 |
| 763 } // namespace WebKit | 762 } // namespace WebKit |
| 764 | 763 |
| 765 #endif | 764 #endif |
| OLD | NEW |