| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 void enable(ErrorString*); | 90 void enable(ErrorString*); |
| 91 void disable(ErrorString*); | 91 void disable(ErrorString*); |
| 92 void addScriptToEvaluateOnLoad(ErrorString*, const String& source); | 92 void addScriptToEvaluateOnLoad(ErrorString*, const String& source); |
| 93 void removeAllScriptsToEvaluateOnLoad(ErrorString*); | 93 void removeAllScriptsToEvaluateOnLoad(ErrorString*); |
| 94 void reload(ErrorString*, const bool* const optionalIgnoreCache); | 94 void reload(ErrorString*, const bool* const optionalIgnoreCache); |
| 95 void open(ErrorString*, const String& url, const bool* const inNewWindow); | 95 void open(ErrorString*, const String& url, const bool* const inNewWindow); |
| 96 void getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String*
cookiesString); | 96 void getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String*
cookiesString); |
| 97 void deleteCookie(ErrorString*, const String& cookieName, const String& doma
in); | 97 void deleteCookie(ErrorString*, const String& cookieName, const String& doma
in); |
| 98 void getResourceTree(ErrorString*, RefPtr<InspectorObject>*); | 98 void getResourceTree(ErrorString*, RefPtr<InspectorObject>*); |
| 99 void getResourceContent(ErrorString*, const String& frameId, const String& u
rl, String* content, bool* base64Encoded); | 99 void getResourceContent(ErrorString*, const String& frameId, const String& u
rl, String* content, bool* base64Encoded); |
| 100 void searchInResource(ErrorString*, const String& frameId, const String& url
, const String&, RefPtr<InspectorArray>*); | 100 void searchInResource(ErrorString*, const String& frameId, const String& url
, const String& query, const bool* const optionalCaseSensitive, const bool* cons
t optionalIsRegex, RefPtr<InspectorArray>*); |
| 101 void searchInResources(ErrorString*, const String&, const bool* const caseSe
nsitive, const bool* const isRegex, RefPtr<InspectorArray>*); | 101 void searchInResources(ErrorString*, const String&, const bool* const caseSe
nsitive, const bool* const isRegex, RefPtr<InspectorArray>*); |
| 102 | 102 |
| 103 // InspectorInstrumentation API | 103 // InspectorInstrumentation API |
| 104 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*); | 104 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*); |
| 105 void domContentEventFired(); | 105 void domContentEventFired(); |
| 106 void loadEventFired(); | 106 void loadEventFired(); |
| 107 void frameNavigated(DocumentLoader*); | 107 void frameNavigated(DocumentLoader*); |
| 108 void frameDetached(Frame*); | 108 void frameDetached(Frame*); |
| 109 void loaderDetachedFromFrame(DocumentLoader*); | 109 void loaderDetachedFromFrame(DocumentLoader*); |
| 110 | 110 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 136 HashMap<String, Frame*> m_identifierToFrame; | 136 HashMap<String, Frame*> m_identifierToFrame; |
| 137 HashMap<DocumentLoader*, String> m_loaderToIdentifier; | 137 HashMap<DocumentLoader*, String> m_loaderToIdentifier; |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 | 140 |
| 141 } // namespace WebCore | 141 } // namespace WebCore |
| 142 | 142 |
| 143 #endif // ENABLE(INSPECTOR) | 143 #endif // ENABLE(INSPECTOR) |
| 144 | 144 |
| 145 #endif // !defined(InspectorPagerAgent_h) | 145 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |