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

Side by Side Diff: components/copresence/rpc/http_post.h

Issue 671573003: Adding support for authenticated copresence calls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing memory error Created 6 years, 1 month 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ 5 #ifndef COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_
6 #define COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ 6 #define COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 23 matching lines...) Expand all
34 // Callback to receive the HTTP status code and body of the response 34 // Callback to receive the HTTP status code and body of the response
35 // (if any). A pointer to this HttpPost object is also passed along. 35 // (if any). A pointer to this HttpPost object is also passed along.
36 typedef base::Callback<void(int, const std::string&)> 36 typedef base::Callback<void(int, const std::string&)>
37 ResponseCallback; 37 ResponseCallback;
38 38
39 // Create a request to the Copresence server. 39 // Create a request to the Copresence server.
40 // |url_context_getter| is owned by the caller, 40 // |url_context_getter| is owned by the caller,
41 // and the context it provides must be available until the request completes. 41 // and the context it provides must be available until the request completes.
42 HttpPost(net::URLRequestContextGetter* url_context_getter, 42 HttpPost(net::URLRequestContextGetter* url_context_getter,
43 const std::string& server_host, 43 const std::string& server_host,
44 // TODO(ckehoe): Condense some of these into a struct.
44 const std::string& rpc_name, 45 const std::string& rpc_name,
46 std::string api_key, // If blank, we overwrite with a default.
47 const std::string& auth_token,
45 const std::string& tracing_token, 48 const std::string& tracing_token,
46 std::string api_key, // If blank, we overwrite with a default.
47 const google::protobuf::MessageLite& request_proto); 49 const google::protobuf::MessageLite& request_proto);
48 50
49 // HTTP requests are cancelled on delete. 51 // HTTP requests are cancelled on delete.
50 ~HttpPost() override; 52 ~HttpPost() override;
51 53
52 // Send an HttpPost request. 54 // Send an HttpPost request.
53 void Start(const ResponseCallback& response_callback); 55 void Start(const ResponseCallback& response_callback);
54 56
55 private: 57 private:
56 static const int kUrlFetcherId = 1; 58 static const int kUrlFetcherId = 1;
57 static const char kApiKeyField[]; 59 static const char kApiKeyField[];
58 static const char kTracingField[]; 60 static const char kTracingField[];
59 61
60 friend class HttpPostTest; 62 friend class HttpPostTest;
61 63
62 // Overridden from net::URLFetcherDelegate. 64 // Overridden from net::URLFetcherDelegate.
63 void OnURLFetchComplete(const net::URLFetcher* source) override; 65 void OnURLFetchComplete(const net::URLFetcher* source) override;
64 66
65 ResponseCallback response_callback_; 67 ResponseCallback response_callback_;
66 68
67 scoped_ptr<net::URLFetcher> url_fetcher_; 69 scoped_ptr<net::URLFetcher> url_fetcher_;
68 70
69 DISALLOW_COPY_AND_ASSIGN(HttpPost); 71 DISALLOW_COPY_AND_ASSIGN(HttpPost);
70 }; 72 };
71 73
72 } // namespace copresence 74 } // namespace copresence
73 75
74 #endif // COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ 76 #endif // COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_
OLDNEW
« no previous file with comments | « components/copresence/public/copresence_manager.h ('k') | components/copresence/rpc/http_post.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698