| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 bool handleTouchEvent(LocalFrame*, const PlatformTouchEvent&); | 101 bool handleTouchEvent(LocalFrame*, const PlatformTouchEvent&); |
| 102 bool handleKeyboardEvent(LocalFrame*, const PlatformKeyboardEvent&); | 102 bool handleKeyboardEvent(LocalFrame*, const PlatformKeyboardEvent&); |
| 103 | 103 |
| 104 void pageScaleFactorChanged(); | 104 void pageScaleFactorChanged(); |
| 105 bool deviceEmulationEnabled(); | 105 bool deviceEmulationEnabled(); |
| 106 bool screencastEnabled(); | 106 bool screencastEnabled(); |
| 107 | 107 |
| 108 bool isUnderTest(); | 108 bool isUnderTest(); |
| 109 void evaluateForTestInFrontend(long callId, const String& script); | 109 void evaluateForTestInFrontend(long callId, const String& script); |
| 110 | 110 |
| 111 PassRefPtr<JSONObject> highlightJSONForNode(Node*); | |
| 112 | |
| 113 void willProcessTask(); | 111 void willProcessTask(); |
| 114 void didProcessTask(); | 112 void didProcessTask(); |
| 115 void flushPendingProtocolNotifications(); | 113 void flushPendingProtocolNotifications(); |
| 116 | 114 |
| 117 void didCommitLoadForMainFrame(); | 115 void didCommitLoadForMainFrame(); |
| 118 void didBeginFrame(int frameId); | 116 void didBeginFrame(int frameId); |
| 119 void didCancelFrame(); | 117 void didCancelFrame(); |
| 120 void willComposite(); | 118 void willComposite(); |
| 121 void didComposite(); | 119 void didComposite(); |
| 122 | 120 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 InspectorAgentRegistry m_agents; | 153 InspectorAgentRegistry m_agents; |
| 156 bool m_isUnderTest; | 154 bool m_isUnderTest; |
| 157 bool m_deferredAgentsInitialized; | 155 bool m_deferredAgentsInitialized; |
| 158 String m_hostId; | 156 String m_hostId; |
| 159 }; | 157 }; |
| 160 | 158 |
| 161 } | 159 } |
| 162 | 160 |
| 163 | 161 |
| 164 #endif // InspectorController_h | 162 #endif // InspectorController_h |
| OLD | NEW |