| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 virtual void setScrollbarColors(unsigned inactiveColor, | 246 virtual void setScrollbarColors(unsigned inactiveColor, |
| 247 unsigned activeColor, | 247 unsigned activeColor, |
| 248 unsigned trackColor); | 248 unsigned trackColor); |
| 249 virtual void setSelectionColors(unsigned activeBackgroundColor, | 249 virtual void setSelectionColors(unsigned activeBackgroundColor, |
| 250 unsigned activeForegroundColor, | 250 unsigned activeForegroundColor, |
| 251 unsigned inactiveBackgroundColor, | 251 unsigned inactiveBackgroundColor, |
| 252 unsigned inactiveForegroundColor); | 252 unsigned inactiveForegroundColor); |
| 253 virtual void performCustomContextMenuAction(unsigned action); | 253 virtual void performCustomContextMenuAction(unsigned action); |
| 254 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */); | 254 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */); |
| 255 virtual void removePageOverlay(WebPageOverlay*); | 255 virtual void removePageOverlay(WebPageOverlay*); |
| 256 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara
meters&); |
| 256 | 257 |
| 257 // WebLayerTreeViewClient | 258 // WebLayerTreeViewClient |
| 258 virtual void willBeginFrame(); | 259 virtual void willBeginFrame(); |
| 259 virtual void updateAnimations(double monotonicFrameBeginTime); | 260 virtual void updateAnimations(double monotonicFrameBeginTime); |
| 260 virtual void applyScrollAndScale(const WebSize&, float); | 261 virtual void applyScrollAndScale(const WebSize&, float); |
| 261 virtual WebGraphicsContext3D* createContext3D(); | 262 virtual WebGraphicsContext3D* createContext3D(); |
| 262 virtual void didRebindGraphicsContext(bool); | 263 virtual void didRebindGraphicsContext(bool); |
| 263 virtual void didCommit(); | 264 virtual void didCommit(); |
| 264 virtual void didCommitAndDrawFrame(); | 265 virtual void didCommitAndDrawFrame(); |
| 265 virtual void didCompleteSwapBuffers(); | 266 virtual void didCompleteSwapBuffers(); |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 #endif | 730 #endif |
| 730 OwnPtr<WebCore::ActivePlatformGestureAnimation> m_gestureAnimation; | 731 OwnPtr<WebCore::ActivePlatformGestureAnimation> m_gestureAnimation; |
| 731 WebPoint m_lastWheelPosition; | 732 WebPoint m_lastWheelPosition; |
| 732 WebPoint m_lastWheelGlobalPosition; | 733 WebPoint m_lastWheelGlobalPosition; |
| 733 int m_flingModifier; | 734 int m_flingModifier; |
| 734 }; | 735 }; |
| 735 | 736 |
| 736 } // namespace WebKit | 737 } // namespace WebKit |
| 737 | 738 |
| 738 #endif | 739 #endif |
| OLD | NEW |