summaryrefslogtreecommitdiffstats
path: root/chrome/browser/local_discovery/privet_confirm_api_flow.h
blob: 1544411abc1d4490dd14d8aa596ef52d82ff6452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 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.

#ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONFIRM_API_FLOW_H_
#define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONFIRM_API_FLOW_H_

#include <string>

#include "chrome/browser/local_discovery/gcd_api_flow.h"
#include "net/url_request/url_request_context_getter.h"


namespace local_discovery {

// API call flow for server-side communication with CloudPrint for registration.
class PrivetConfirmApiCallFlow : public CloudPrintApiFlowRequest {
 public:
  typedef base::Callback<void(GCDApiFlowInterface::Status /*success*/)>
      ResponseCallback;

  // Create an OAuth2-based confirmation
  PrivetConfirmApiCallFlow(const std::string& token,
                           const ResponseCallback& callback);

  virtual ~PrivetConfirmApiCallFlow();

  virtual void OnGCDAPIFlowError(GCDApiFlowInterface::Status status) OVERRIDE;
  virtual void OnGCDAPIFlowComplete(
      const base::DictionaryValue& value) OVERRIDE;
  virtual net::URLFetcher::RequestType GetRequestType() OVERRIDE;

  virtual GURL GetURL() OVERRIDE;

 private:
  ResponseCallback callback_;
  std::string token_;
};

}  // namespace local_discovery

#endif  // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONFIRM_API_FLOW_H_