| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 void WillAddPageOverlay(const GraphicsLayer*); | 84 void WillAddPageOverlay(const GraphicsLayer*); |
| 85 void DidRemovePageOverlay(const GraphicsLayer*); | 85 void DidRemovePageOverlay(const GraphicsLayer*); |
| 86 void LayerTreeViewChanged(WebLayerTreeView*); | 86 void LayerTreeViewChanged(WebLayerTreeView*); |
| 87 void RootLayerCleared(); | 87 void RootLayerCleared(); |
| 88 | 88 |
| 89 // WebDevToolsAgent implementation. | 89 // WebDevToolsAgent implementation. |
| 90 void Attach(const WebString& host_id, int session_id) override; | 90 void Attach(const WebString& host_id, int session_id) override; |
| 91 void Reattach(const WebString& host_id, | 91 void Reattach(const WebString& host_id, |
| 92 int session_id, | 92 int session_id, |
| 93 const WebString& saved_state) override; | 93 const WebString& saved_state) override; |
| 94 void Detach() override; | 94 void Detach(int session_id) override; |
| 95 void ContinueProgram() override; | 95 void ContinueProgram() override; |
| 96 void DispatchOnInspectorBackend(int session_id, | 96 void DispatchOnInspectorBackend(int session_id, |
| 97 int call_id, | 97 int call_id, |
| 98 const WebString& method, | 98 const WebString& method, |
| 99 const WebString& message) override; | 99 const WebString& message) override; |
| 100 void InspectElementAt(int session_id, const WebPoint&) override; | 100 void InspectElementAt(int session_id, const WebPoint&) override; |
| 101 void FailedToRequestDevTools() override; | 101 void FailedToRequestDevTools() override; |
| 102 WebString EvaluateInWebInspectorOverlay(const WebString& script) override; | 102 WebString EvaluateInWebInspectorOverlay(const WebString& script) override; |
| 103 bool CacheDisabled() override; | 103 bool CacheDisabled() override; |
| 104 | 104 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 Member<InspectorOverlayAgent> overlay_agent_; | 159 Member<InspectorOverlayAgent> overlay_agent_; |
| 160 | 160 |
| 161 Member<InspectorSession> session_; | 161 Member<InspectorSession> session_; |
| 162 bool include_view_agents_; | 162 bool include_view_agents_; |
| 163 int layer_tree_id_; | 163 int layer_tree_id_; |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 } // namespace blink | 166 } // namespace blink |
| 167 | 167 |
| 168 #endif | 168 #endif |
| OLD | NEW |