| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void setTextAutosizingEnabled(bool); | 81 void setTextAutosizingEnabled(bool); |
| 82 void setDeviceScaleAdjustment(float); | 82 void setDeviceScaleAdjustment(float); |
| 83 void setPreferCompositingToLCDTextEnabled(bool); | 83 void setPreferCompositingToLCDTextEnabled(bool); |
| 84 | 84 |
| 85 void willBeDestroyed(); | 85 void willBeDestroyed(); |
| 86 void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>); | 86 void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>); |
| 87 | 87 |
| 88 void setInspectorFrontendClient(InspectorFrontendClient*); | 88 void setInspectorFrontendClient(InspectorFrontendClient*); |
| 89 void didClearDocumentOfWindowObject(LocalFrame*); | 89 void didClearDocumentOfWindowObject(LocalFrame*); |
| 90 void setInjectedScriptForOrigin(const String& origin, const String& source); | 90 void setInjectedScriptForOrigin(const String& origin, const String& source); |
| 91 void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>); | 91 void showContextMenu(float x, float y, PassRefPtrWillBeRawPtr<ContextMenuPro
vider>); |
| 92 | 92 |
| 93 void dispatchMessageFromFrontend(const String& message); | 93 void dispatchMessageFromFrontend(const String& message); |
| 94 | 94 |
| 95 void connectFrontend(const String& hostId, InspectorFrontendChannel*); | 95 void connectFrontend(const String& hostId, InspectorFrontendChannel*); |
| 96 void disconnectFrontend(); | 96 void disconnectFrontend(); |
| 97 void reconnectFrontend(); | 97 void reconnectFrontend(); |
| 98 void reuseFrontend(const String& hostId, InspectorFrontendChannel*, const St
ring& inspectorStateCookie); | 98 void reuseFrontend(const String& hostId, InspectorFrontendChannel*, const St
ring& inspectorStateCookie); |
| 99 void setProcessId(long); | 99 void setProcessId(long); |
| 100 void setLayerTreeId(int); | 100 void setLayerTreeId(int); |
| 101 | 101 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 InspectorAgentRegistry m_agents; | 164 InspectorAgentRegistry m_agents; |
| 165 bool m_isUnderTest; | 165 bool m_isUnderTest; |
| 166 bool m_deferredAgentsInitialized; | 166 bool m_deferredAgentsInitialized; |
| 167 String m_hostId; | 167 String m_hostId; |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 } | 170 } |
| 171 | 171 |
| 172 | 172 |
| 173 #endif // !defined(InspectorController_h) | 173 #endif // !defined(InspectorController_h) |
| OLD | NEW |