OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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/browser/extensions/api/vpn_provider/vpn_provider_api.h" |
| 6 |
| 7 namespace extensions { |
| 8 namespace api { |
| 9 |
| 10 VpnProviderCreateConfigFunction::~VpnProviderCreateConfigFunction() { |
| 11 } |
| 12 |
| 13 ExtensionFunction::ResponseAction VpnProviderCreateConfigFunction::Run() { |
| 14 return RespondNow(OneArgument(new base::FundamentalValue(-1))); |
| 15 } |
| 16 |
| 17 VpnProviderDestroyConfigFunction::~VpnProviderDestroyConfigFunction() { |
| 18 } |
| 19 |
| 20 ExtensionFunction::ResponseAction VpnProviderDestroyConfigFunction::Run() { |
| 21 return RespondNow(NoArguments()); |
| 22 } |
| 23 |
| 24 VpnProviderSetParametersFunction::~VpnProviderSetParametersFunction() { |
| 25 } |
| 26 |
| 27 ExtensionFunction::ResponseAction VpnProviderSetParametersFunction::Run() { |
| 28 return RespondNow(NoArguments()); |
| 29 } |
| 30 |
| 31 VpnProviderSendPacketFunction::~VpnProviderSendPacketFunction() { |
| 32 } |
| 33 |
| 34 ExtensionFunction::ResponseAction VpnProviderSendPacketFunction::Run() { |
| 35 return RespondNow(NoArguments()); |
| 36 } |
| 37 |
| 38 VpnProviderNotifyConnectionStateChangedFunction:: |
| 39 ~VpnProviderNotifyConnectionStateChangedFunction() { |
| 40 } |
| 41 |
| 42 ExtensionFunction::ResponseAction |
| 43 VpnProviderNotifyConnectionStateChangedFunction::Run() { |
| 44 return RespondNow(NoArguments()); |
| 45 } |
| 46 |
| 47 } // namespace api |
| 48 } // namespace extensions |
OLD | NEW |