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

Side by Side Diff: headless/public/util/in_memory_request_job.h

Issue 2049363003: Adds support for headless chrome embedder mojo services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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
OLDNEW
(Empty)
1 // Copyright 2016 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 HEADLESS_PUBLIC_UTIL_IN_MEMORY_URL_REQUEST_JOB_H_
6 #define HEADLESS_PUBLIC_UTIL_IN_MEMORY_URL_REQUEST_JOB_H_
7
8 #include "base/memory/weak_ptr.h"
9 #include "headless/public/util/in_memory_protocol_handler.h"
10 #include "net/url_request/url_request_job.h"
11
12 namespace net {
13 class StringIOBuffer;
14 class DrainableIOBuffer;
15 }
16
17 namespace headless {
18 class InMemoryRequestJob : public net::URLRequestJob {
19 public:
20 InMemoryRequestJob(net::URLRequest* request,
21 net::NetworkDelegate* network_delegate,
22 const InMemoryProtocolHandler::Response* response);
23
24 // net::URLRequestJob implementation:
25 void Start() override;
26 void Kill() override;
27 int ReadRawData(net::IOBuffer* buf, int buf_size) override;
28 bool GetMimeType(std::string* mime_type) const override;
29
30 private:
31 ~InMemoryRequestJob() override;
32
33 void StartAsync();
34
35 const InMemoryProtocolHandler::Response* response_; // NOT OWNED
36 size_t data_offset_;
37
38 base::WeakPtrFactory<InMemoryRequestJob> weak_factory_;
39
40 DISALLOW_COPY_AND_ASSIGN(InMemoryRequestJob);
41 };
42
43 } // namespace headless
44
45 #endif // HEADLESS_PUBLIC_UTIL_IN_MEMORY_URL_REQUEST_JOB_H_
OLDNEW
« no previous file with comments | « headless/public/util/in_memory_protocol_handler.cc ('k') | headless/public/util/in_memory_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698