| Index: chrome/browser/extensions/api/diagnostics_private/send_ping_packet.cc
|
| diff --git a/chrome/browser/extensions/api/diagnostics_private/send_ping_packet.cc b/chrome/browser/extensions/api/diagnostics_private/send_ping_packet.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c13e16bc2c8a1d1c4b7689a08c45a750fbd2ab6b
|
| --- /dev/null
|
| +++ b/chrome/browser/extensions/api/diagnostics_private/send_ping_packet.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "send_ping_packet.h"
|
| +
|
| +namespace extensions {
|
| +
|
| +void SendPingPacket(
|
| + const std::string& ip,
|
| + const int* ttl,
|
| + const int* timeout,
|
| + const int* size,
|
| + const SendPingPacketCallback& callback) {
|
| + callback.Run("Not implemented", "", 0.0);
|
| +}
|
| +
|
| +} // namespace extensions
|
|
|