| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 virtual void setShowPaintRects(bool) { } | 64 virtual void setShowPaintRects(bool) { } |
| 65 virtual void setShowDebugBorders(bool) { } | 65 virtual void setShowDebugBorders(bool) { } |
| 66 virtual void setShowFPSCounter(bool) { } | 66 virtual void setShowFPSCounter(bool) { } |
| 67 virtual void setContinuousPaintingEnabled(bool) { } | 67 virtual void setContinuousPaintingEnabled(bool) { } |
| 68 virtual void setShowScrollBottleneckRects(bool) { } | 68 virtual void setShowScrollBottleneckRects(bool) { } |
| 69 | 69 |
| 70 virtual void resetScrollAndPageScaleFactor() { } | 70 virtual void resetScrollAndPageScaleFactor() { } |
| 71 virtual float minimumPageScaleFactor() { return 1; } | 71 virtual float minimumPageScaleFactor() { return 1; } |
| 72 virtual float maximumPageScaleFactor() { return 1; } | 72 virtual float maximumPageScaleFactor() { return 1; } |
| 73 virtual void setPageScaleFactor(float) { } | 73 virtual void setPageScaleFactor(float) { } |
| 74 virtual void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvide
r>) { } | 74 virtual void showContextMenu(float x, float y, PassRefPtrWillBeRawPtr<Contex
tMenuProvider>) { } |
| 75 | 75 |
| 76 virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) { } | 76 virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) { } |
| 77 virtual void dispatchMouseEvent(const PlatformMouseEvent&) { } | 77 virtual void dispatchMouseEvent(const PlatformMouseEvent&) { } |
| 78 | 78 |
| 79 virtual void resumeStartup() { } | 79 virtual void resumeStartup() { } |
| 80 | 80 |
| 81 protected: | 81 protected: |
| 82 virtual ~InspectorClient() { } | 82 virtual ~InspectorClient() { } |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace blink | 85 } // namespace blink |
| 86 | 86 |
| 87 #endif // !defined(InspectorClient_h) | 87 #endif // !defined(InspectorClient_h) |
| OLD | NEW |