Chromium Code Reviews| 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 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_GCD_REGISTRATION_TICKET_CREATOR_H_ | |
| 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_GCD_REGISTRATION_TICKET_CREATOR_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/callback.h" | |
| 11 #include "base/values.h" | |
| 12 #include "chrome/browser/local_discovery/gcd_api_flow.h" | |
| 13 | |
| 14 namespace local_discovery { | |
| 15 | |
| 16 class GCDRegistrationTicketCreator : public GCDApiFlowRequest { | |
|
Vitaly Buka (NO REVIEWS)
2014/06/03 21:30:49
maybe GCDRegistrationTicketCreator -> GCDRegistrat
Noam Samuel
2014/06/03 21:48:13
Worried people will think this is an object repres
Noam Samuel
2014/06/03 22:28:39
Renamed to GCDRegistrationTicketRequest
| |
| 17 public: | |
| 18 // |ticket_id| contains the registration ticket ID, or an empty string in case | |
| 19 // of an error. | |
| 20 typedef base::Callback<void(const std::string& ticket_id)> ResponseCallback; | |
| 21 | |
| 22 explicit GCDRegistrationTicketCreator(const ResponseCallback& callback); | |
| 23 virtual ~GCDRegistrationTicketCreator(); | |
| 24 | |
| 25 // GCDApiFlow::Request implementation. | |
| 26 virtual void GetUploadData(std::string* upload_type, | |
| 27 std::string* upload_data) OVERRIDE; | |
| 28 virtual net::URLFetcher::RequestType GetRequestType() OVERRIDE; | |
| 29 virtual void OnGCDAPIFlowError(GCDApiFlow::Status status) OVERRIDE; | |
| 30 virtual void OnGCDAPIFlowComplete( | |
| 31 const base::DictionaryValue& value) OVERRIDE; | |
| 32 virtual GURL GetURL() OVERRIDE; | |
| 33 | |
| 34 private: | |
| 35 ResponseCallback callback_; | |
| 36 }; | |
| 37 | |
| 38 } // namespace local_discovery | |
| 39 | |
| 40 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_GCD_REGISTRATION_TICKET_CREATOR_H_ | |
| OLD | NEW |