| 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 const IntPoint& document_scroll_offset); | 124 const IntPoint& document_scroll_offset); |
| 125 void EvaluateInOverlay(const String& method, const String& argument); | 125 void EvaluateInOverlay(const String& method, const String& argument); |
| 126 void EvaluateInOverlay(const String& method, | 126 void EvaluateInOverlay(const String& method, |
| 127 std::unique_ptr<protocol::Value> argument); | 127 std::unique_ptr<protocol::Value> argument); |
| 128 void OnTimer(TimerBase*); | 128 void OnTimer(TimerBase*); |
| 129 void RebuildOverlayPage(); | 129 void RebuildOverlayPage(); |
| 130 void Invalidate(); | 130 void Invalidate(); |
| 131 void ScheduleUpdate(); | 131 void ScheduleUpdate(); |
| 132 void ClearInternal(); | 132 void ClearInternal(); |
| 133 | 133 |
| 134 bool HandleMousePress(); | 134 bool HandleMouseDown(); |
| 135 bool HandleMouseUp(); |
| 135 bool HandleGestureEvent(const WebGestureEvent&); | 136 bool HandleGestureEvent(const WebGestureEvent&); |
| 136 bool HandleTouchEvent(const WebTouchEvent&); | 137 bool HandleTouchEvent(const WebTouchEvent&); |
| 137 bool HandleMouseMove(const WebMouseEvent&); | 138 bool HandleMouseMove(const WebMouseEvent&); |
| 138 bool ShouldSearchForNode(); | 139 bool ShouldSearchForNode(); |
| 139 void Inspect(Node*); | 140 void Inspect(Node*); |
| 140 | 141 |
| 141 Member<WebLocalFrameImpl> frame_impl_; | 142 Member<WebLocalFrameImpl> frame_impl_; |
| 142 String paused_in_debugger_message_; | 143 String paused_in_debugger_message_; |
| 143 Member<Node> highlight_node_; | 144 Member<Node> highlight_node_; |
| 144 Member<Node> event_target_node_; | 145 Member<Node> event_target_node_; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 160 Member<InspectorDOMAgent> dom_agent_; | 161 Member<InspectorDOMAgent> dom_agent_; |
| 161 std::unique_ptr<PageOverlay> page_overlay_; | 162 std::unique_ptr<PageOverlay> page_overlay_; |
| 162 Member<Node> hovered_node_for_inspect_mode_; | 163 Member<Node> hovered_node_for_inspect_mode_; |
| 163 InspectorDOMAgent::SearchMode inspect_mode_; | 164 InspectorDOMAgent::SearchMode inspect_mode_; |
| 164 std::unique_ptr<InspectorHighlightConfig> inspect_mode_highlight_config_; | 165 std::unique_ptr<InspectorHighlightConfig> inspect_mode_highlight_config_; |
| 165 }; | 166 }; |
| 166 | 167 |
| 167 } // namespace blink | 168 } // namespace blink |
| 168 | 169 |
| 169 #endif // InspectorOverlay_h | 170 #endif // InspectorOverlay_h |
| OLD | NEW |