| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 void getResourceTree(ErrorString*, RefPtr<InspectorObject>*); | 95 void getResourceTree(ErrorString*, RefPtr<InspectorObject>*); |
| 96 void getResourceContent(ErrorString*, const String& frameId, const String& u
rl, String* content, bool* base64Encoded); | 96 void getResourceContent(ErrorString*, const String& frameId, const String& u
rl, String* content, bool* base64Encoded); |
| 97 void searchInResources(ErrorString*, const String&, const bool* const caseSe
nsitive, const bool* const isRegex, RefPtr<InspectorArray>*); | 97 void searchInResources(ErrorString*, const String&, const bool* const caseSe
nsitive, const bool* const isRegex, RefPtr<InspectorArray>*); |
| 98 | 98 |
| 99 // InspectorInstrumentation API | 99 // InspectorInstrumentation API |
| 100 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*); | 100 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*); |
| 101 void domContentEventFired(); | 101 void domContentEventFired(); |
| 102 void loadEventFired(); | 102 void loadEventFired(); |
| 103 void frameNavigated(DocumentLoader*); | 103 void frameNavigated(DocumentLoader*); |
| 104 void frameDetached(Frame*); | 104 void frameDetached(Frame*); |
| 105 void frameDestroyed(Frame*); | |
| 106 void loaderDetachedFromFrame(DocumentLoader*); | 105 void loaderDetachedFromFrame(DocumentLoader*); |
| 107 | 106 |
| 108 // Inspector Controller API | 107 // Inspector Controller API |
| 109 void setFrontend(InspectorFrontend*); | 108 void setFrontend(InspectorFrontend*); |
| 110 void clearFrontend(); | 109 void clearFrontend(); |
| 111 | 110 |
| 112 // Cross-agents API | 111 // Cross-agents API |
| 113 Frame* mainFrame(); | 112 Frame* mainFrame(); |
| 114 String createIdentifier(); | 113 String createIdentifier(); |
| 115 Frame* frameForId(const String& frameId); | 114 Frame* frameForId(const String& frameId); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 131 HashMap<String, Frame*> m_identifierToFrame; | 130 HashMap<String, Frame*> m_identifierToFrame; |
| 132 HashMap<DocumentLoader*, String> m_loaderToIdentifier; | 131 HashMap<DocumentLoader*, String> m_loaderToIdentifier; |
| 133 }; | 132 }; |
| 134 | 133 |
| 135 | 134 |
| 136 } // namespace WebCore | 135 } // namespace WebCore |
| 137 | 136 |
| 138 #endif // ENABLE(INSPECTOR) | 137 #endif // ENABLE(INSPECTOR) |
| 139 | 138 |
| 140 #endif // !defined(InspectorPagerAgent_h) | 139 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |