| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 virtual void setShowFPSCounter(ErrorString*, bool show) override; | 116 virtual void setShowFPSCounter(ErrorString*, bool show) override; |
| 117 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled) overri
de; | 117 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled) overri
de; |
| 118 virtual void setShowScrollBottleneckRects(ErrorString*, bool show) override; | 118 virtual void setShowScrollBottleneckRects(ErrorString*, bool show) override; |
| 119 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu
lt::Enum*) override; | 119 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu
lt::Enum*) override; |
| 120 virtual void setScriptExecutionDisabled(ErrorString*, bool) override; | 120 virtual void setScriptExecutionDisabled(ErrorString*, bool) override; |
| 121 virtual void setTouchEmulationEnabled(ErrorString*, bool enabled, const Stri
ng* configuration) override; | 121 virtual void setTouchEmulationEnabled(ErrorString*, bool enabled, const Stri
ng* configuration) override; |
| 122 virtual void setEmulatedMedia(ErrorString*, const String&) override; | 122 virtual void setEmulatedMedia(ErrorString*, const String&) override; |
| 123 virtual void startScreencast(ErrorString*, const String* format, const int*
quality, const int* maxWidth, const int* maxHeight) override; | 123 virtual void startScreencast(ErrorString*, const String* format, const int*
quality, const int* maxWidth, const int* maxHeight) override; |
| 124 virtual void stopScreencast(ErrorString*) override; | 124 virtual void stopScreencast(ErrorString*) override; |
| 125 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid) override; | 125 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid) override; |
| 126 virtual void setAnimationsPlaybackRate(ErrorString*, double playbackRate) ov
erride; |
| 126 | 127 |
| 127 // InspectorInstrumentation API | 128 // InspectorInstrumentation API |
| 128 void didClearDocumentOfWindowObject(LocalFrame*); | 129 void didClearDocumentOfWindowObject(LocalFrame*); |
| 129 void domContentLoadedEventFired(LocalFrame*); | 130 void domContentLoadedEventFired(LocalFrame*); |
| 130 void loadEventFired(LocalFrame*); | 131 void loadEventFired(LocalFrame*); |
| 131 void didCommitLoad(LocalFrame*, DocumentLoader*); | 132 void didCommitLoad(LocalFrame*, DocumentLoader*); |
| 132 void frameAttachedToParent(LocalFrame*); | 133 void frameAttachedToParent(LocalFrame*); |
| 133 void frameDetachedFromParent(LocalFrame*); | 134 void frameDetachedFromParent(LocalFrame*); |
| 134 void loaderDetachedFromFrame(DocumentLoader*); | 135 void loaderDetachedFromFrame(DocumentLoader*); |
| 135 void frameStartedLoading(LocalFrame*); | 136 void frameStartedLoading(LocalFrame*); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 | 225 |
| 225 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten
tLoader; | 226 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten
tLoader; |
| 226 HashMap<String, String> m_editedResourceContent; | 227 HashMap<String, String> m_editedResourceContent; |
| 227 }; | 228 }; |
| 228 | 229 |
| 229 | 230 |
| 230 } // namespace blink | 231 } // namespace blink |
| 231 | 232 |
| 232 | 233 |
| 233 #endif // !defined(InspectorPagerAgent_h) | 234 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |