| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Implements AutomationExtensionFunction. | 5 // Implements AutomationExtensionFunction. |
| 6 | 6 |
| 7 #include "chrome/browser/automation/automation_extension_function.h" | 7 #include "chrome/browser/automation/automation_extension_function.h" |
| 8 | 8 |
| 9 #include "base/json_reader.h" | 9 #include "base/json_reader.h" |
| 10 #include "base/json_writer.h" | 10 #include "base/json_writer.h" |
| 11 #include "chrome/browser/automation/extension_automation_constants.h" | 11 #include "chrome/browser/automation/extension_automation_constants.h" |
| 12 #include "chrome/browser/extensions/extension_function_dispatcher.h" | 12 #include "chrome/browser/extensions/extension_function_dispatcher.h" |
| 13 #include "chrome/browser/renderer_host/render_view_host.h" | 13 #include "chrome/browser/renderer_host/render_view_host.h" |
| 14 | 14 |
| 15 bool AutomationExtensionFunction::enabled_ = false; | 15 bool AutomationExtensionFunction::enabled_ = false; |
| 16 | 16 |
| 17 void AutomationExtensionFunction::SetName(const std::string& name) { | |
| 18 name_ = name; | |
| 19 } | |
| 20 | |
| 21 void AutomationExtensionFunction::SetArgs(const std::string& args) { | 17 void AutomationExtensionFunction::SetArgs(const std::string& args) { |
| 22 args_ = args; | 18 args_ = args; |
| 23 } | 19 } |
| 24 | 20 |
| 25 const std::string AutomationExtensionFunction::GetResult() { | 21 const std::string AutomationExtensionFunction::GetResult() { |
| 26 // Our API result passing is done through InterceptMessageFromExternalHost | 22 // Our API result passing is done through InterceptMessageFromExternalHost |
| 27 return ""; | 23 return ""; |
| 28 } | 24 } |
| 29 | 25 |
| 30 const std::string AutomationExtensionFunction::GetError() { | 26 const std::string AutomationExtensionFunction::GetError() { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // functions, we should use that instead. | 105 // functions, we should use that instead. |
| 110 view_host->SendExtensionResponse(request_id, success, | 106 view_host->SendExtensionResponse(request_id, success, |
| 111 response, error); | 107 response, error); |
| 112 return true; | 108 return true; |
| 113 } | 109 } |
| 114 } | 110 } |
| 115 } | 111 } |
| 116 | 112 |
| 117 return false; | 113 return false; |
| 118 } | 114 } |
| OLD | NEW |