Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: chrome/browser/extensions/api/diagnostics/diagnostics_api.h

Issue 17210002: Connectivity Diagnostics API: chrome.diagnostics.sendPacket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_DIAGNOSTICS_DIAGNOSTICS_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DIAGNOSTICS_DIAGNOSTICS_API_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/extensions/api/api_function.h"
12 #include "chrome/browser/extensions/api/diagnostics/send_ping_packet.h"
13 #include "chrome/common/extensions/api/diagnostics.h"
14
15 namespace extensions {
16
17 class DiagnosticsSendPacketFunction : public AsyncApiFunction {
not at google - send to devlin 2013/06/20 23:32:12 What thread does this stuff happen on? Is it the U
Bei Zhang 2013/06/21 08:31:07 AsyncApiFunction works on IO thread. On 2013/06/2
not at google - send to devlin 2013/06/21 17:13:24 Ok. Could you add some DCHECK(CurrentyOn(IO))s aro
Bei Zhang 2013/06/21 19:31:44 Actually all the apps APIs are by default works on
18 public:
19 DECLARE_EXTENSION_FUNCTION("diagnostics.sendPacket",
20 DIAGNOSTICS_SENDPACKET);
21 DiagnosticsSendPacketFunction();
22
23 protected:
24 virtual ~DiagnosticsSendPacketFunction();
25
26 // AsyncApiFunction:
27 virtual bool Prepare() OVERRIDE;
28 virtual void AsyncWorkStart() OVERRIDE;
29 virtual bool Respond() OVERRIDE;
30
31 private:
32 void OnComplete(SendPingPacketResultCode result_code,
33 const std::string& ip,
34 double latency);
35
36 scoped_ptr<extensions::api::diagnostics::SendPacket::Params>
37 parameters_;
38 };
39
40 } // namespace extensions
41
42 #endif // CHROME_BROWSER_EXTENSIONS_API_DIAGNOSTICS_DIAGNOSTICS_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698