| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/common/automation_events.h" | |
| 6 | |
| 7 ScriptEvaluationRequest::ScriptEvaluationRequest() { | |
| 8 } | |
| 9 | |
| 10 ScriptEvaluationRequest::ScriptEvaluationRequest( | |
| 11 const std::string& script, | |
| 12 const std::string& frame_xpath) | |
| 13 : script(script), | |
| 14 frame_xpath(frame_xpath) { | |
| 15 } | |
| 16 | |
| 17 ScriptEvaluationRequest::~ScriptEvaluationRequest() { | |
| 18 } | |
| 19 | |
| 20 AutomationMouseEvent::AutomationMouseEvent() { | |
| 21 } | |
| 22 | |
| 23 AutomationMouseEvent::~AutomationMouseEvent() { | |
| 24 } | |
| OLD | NEW |