| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 void inspect(Node*); | 101 void inspect(Node*); |
| 102 void drawHighlight(GraphicsContext&) const; | 102 void drawHighlight(GraphicsContext&) const; |
| 103 | 103 |
| 104 bool handleGestureEvent(LocalFrame*, const PlatformGestureEvent&); | 104 bool handleGestureEvent(LocalFrame*, const PlatformGestureEvent&); |
| 105 bool handleMouseEvent(LocalFrame*, const PlatformMouseEvent&); | 105 bool handleMouseEvent(LocalFrame*, const PlatformMouseEvent&); |
| 106 bool handleTouchEvent(LocalFrame*, const PlatformTouchEvent&); | 106 bool handleTouchEvent(LocalFrame*, const PlatformTouchEvent&); |
| 107 bool handleKeyboardEvent(LocalFrame*, const PlatformKeyboardEvent&); | 107 bool handleKeyboardEvent(LocalFrame*, const PlatformKeyboardEvent&); |
| 108 | 108 |
| 109 void requestPageScaleFactor(float scale, const IntPoint& origin); | 109 void requestPageScaleFactor(float scale, const IntPoint& origin); |
| 110 void deviceOrPageScaleFactorChanged(); |
| 110 bool deviceEmulationEnabled(); | 111 bool deviceEmulationEnabled(); |
| 111 | 112 |
| 112 bool isUnderTest(); | 113 bool isUnderTest(); |
| 113 void evaluateForTestInFrontend(long callId, const String& script); | 114 void evaluateForTestInFrontend(long callId, const String& script); |
| 114 | 115 |
| 115 void resume(); | 116 void resume(); |
| 116 | 117 |
| 117 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize
, int maximumSingleResourceContentSize); | 118 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize
, int maximumSingleResourceContentSize); |
| 118 | 119 |
| 119 void willProcessTask(); | 120 void willProcessTask(); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 InspectorAgentRegistry m_agents; | 162 InspectorAgentRegistry m_agents; |
| 162 bool m_isUnderTest; | 163 bool m_isUnderTest; |
| 163 bool m_deferredAgentsInitialized; | 164 bool m_deferredAgentsInitialized; |
| 164 String m_hostId; | 165 String m_hostId; |
| 165 }; | 166 }; |
| 166 | 167 |
| 167 } | 168 } |
| 168 | 169 |
| 169 | 170 |
| 170 #endif // !defined(InspectorController_h) | 171 #endif // !defined(InspectorController_h) |
| OLD | NEW |