| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 void resume(); | 108 void resume(); |
| 109 | 109 |
| 110 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize
, int maximumSingleResourceContentSize); | 110 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize
, int maximumSingleResourceContentSize); |
| 111 | 111 |
| 112 InspectorClient* inspectorClient() const { return m_inspectorClient; } | 112 InspectorClient* inspectorClient() const { return m_inspectorClient; } |
| 113 | 113 |
| 114 void willProcessTask(); | 114 void willProcessTask(); |
| 115 void didProcessTask(); | 115 void didProcessTask(); |
| 116 | 116 |
| 117 void didBeginFrame(); | 117 void didBeginFrame(int frameId); |
| 118 void didCancelFrame(); | 118 void didCancelFrame(); |
| 119 void willComposite(); | 119 void willComposite(); |
| 120 void didComposite(); | 120 void didComposite(); |
| 121 | 121 |
| 122 private: | 122 private: |
| 123 InspectorController(Page*, InspectorClient*); | 123 InspectorController(Page*, InspectorClient*); |
| 124 | 124 |
| 125 friend class PostWorkerNotificationToFrontendTask; | 125 friend class PostWorkerNotificationToFrontendTask; |
| 126 friend InstrumentingAgents* instrumentationForPage(Page*); | 126 friend InstrumentingAgents* instrumentationForPage(Page*); |
| 127 | 127 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 139 Page* m_page; | 139 Page* m_page; |
| 140 InspectorClient* m_inspectorClient; | 140 InspectorClient* m_inspectorClient; |
| 141 InspectorAgentRegistry m_agents; | 141 InspectorAgentRegistry m_agents; |
| 142 bool m_isUnderTest; | 142 bool m_isUnderTest; |
| 143 }; | 143 }; |
| 144 | 144 |
| 145 } | 145 } |
| 146 | 146 |
| 147 | 147 |
| 148 #endif // !defined(InspectorController_h) | 148 #endif // !defined(InspectorController_h) |
| OLD | NEW |