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

Unified Diff: blimp/engine/app/blimp_url_request_context_getter.h

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Use consistent comment style in //chrome Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: blimp/engine/app/blimp_url_request_context_getter.h
diff --git a/blimp/engine/app/blimp_url_request_context_getter.h b/blimp/engine/app/blimp_url_request_context_getter.h
deleted file mode 100644
index 53ee4181e25a30564b80a3db6ad7eeb4f48d2e3e..0000000000000000000000000000000000000000
--- a/blimp/engine/app/blimp_url_request_context_getter.h
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright 2015 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 BLIMP_ENGINE_APP_BLIMP_URL_REQUEST_CONTEXT_GETTER_H_
-#define BLIMP_ENGINE_APP_BLIMP_URL_REQUEST_CONTEXT_GETTER_H_
-
-#include <memory>
-
-#include "base/files/file_path.h"
-#include "base/macros.h"
-#include "content/public/browser/browser_context.h"
-#include "content/public/browser/content_browser_client.h"
-#include "net/url_request/url_request_context_getter.h"
-
-namespace base {
-class SingleThreadTaskRunner;
-}
-
-namespace net {
-class HostResolver;
-class NetLog;
-class ProxyConfigService;
-}
-
-namespace blimp {
-namespace engine {
-
-// The URLRequestContextGetter for Blimp "user" requests.
-// System request context is handled in a separate class.
-class BlimpURLRequestContextGetter : public net::URLRequestContextGetter {
- public:
- // The content of |protocol_handlers| is is swapped into the new instance.
- BlimpURLRequestContextGetter(
- bool ignore_certificate_errors,
- const base::FilePath& base_path,
- const scoped_refptr<base::SingleThreadTaskRunner>& io_loop_task_runner,
- const scoped_refptr<base::SingleThreadTaskRunner>& file_loop_task_runner,
- content::ProtocolHandlerMap* protocol_handlers,
- content::URLRequestInterceptorScopedVector request_interceptors,
- net::NetLog* net_log);
-
- // net::URLRequestContextGetter implementation.
- net::URLRequestContext* GetURLRequestContext() override;
- scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
- const override;
-
- net::HostResolver* host_resolver();
-
- private:
- ~BlimpURLRequestContextGetter() override;
-
- bool ignore_certificate_errors_;
- base::FilePath base_path_;
- scoped_refptr<base::SingleThreadTaskRunner> io_loop_task_runner_;
- scoped_refptr<base::SingleThreadTaskRunner> file_loop_task_runner_;
- net::NetLog* net_log_;
-
- std::unique_ptr<net::ProxyConfigService> proxy_config_service_;
- std::unique_ptr<net::URLRequestContext> url_request_context_;
- content::ProtocolHandlerMap protocol_handlers_;
- content::URLRequestInterceptorScopedVector request_interceptors_;
-
- DISALLOW_COPY_AND_ASSIGN(BlimpURLRequestContextGetter);
-};
-
-} // namespace engine
-} // namespace blimp
-
-#endif // BLIMP_ENGINE_APP_BLIMP_URL_REQUEST_CONTEXT_GETTER_H_

Powered by Google App Engine
This is Rietveld 408576698