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

Unified Diff: chrome/common/net/url_request_intercept_job.h

Issue 6576020: Remove Gears from Chrome (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: windows fixes Created 9 years, 9 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
« no previous file with comments | « chrome/common/net/url_fetcher_unittest.cc ('k') | chrome/common/net/url_request_intercept_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/net/url_request_intercept_job.h
diff --git a/chrome/common/net/url_request_intercept_job.h b/chrome/common/net/url_request_intercept_job.h
deleted file mode 100644
index cc7312a007055e7b2119f4d97fdf8dcaf3b3db58..0000000000000000000000000000000000000000
--- a/chrome/common/net/url_request_intercept_job.h
+++ /dev/null
@@ -1,73 +0,0 @@
-// Copyright (c) 2011 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_COMMON_NET_URL_REQUEST_INTERCEPT_JOB_H_
-#define CHROME_COMMON_NET_URL_REQUEST_INTERCEPT_JOB_H_
-#pragma once
-
-#include <string>
-
-#include "base/scoped_ptr.h"
-#include "base/task.h"
-#include "chrome/common/chrome_plugin_api.h"
-#include "chrome/common/chrome_plugin_util.h"
-#include "content/common/notification_registrar.h"
-#include "net/url_request/url_request_job.h"
-
-namespace net {
-class URLRequest;
-} // namespace net
-
-class ChromePluginLib;
-
-// A request job that handles network requests intercepted by a Chrome plugin.
-class URLRequestInterceptJob : public net::URLRequestJob,
- public NotificationObserver {
- public:
- static URLRequestInterceptJob* FromCPRequest(CPRequest* request) {
- return ScopableCPRequest::GetData<URLRequestInterceptJob*>(request);
- }
-
- URLRequestInterceptJob(net::URLRequest* request, ChromePluginLib* plugin,
- ScopableCPRequest* cprequest);
- virtual ~URLRequestInterceptJob();
-
- // Plugin callbacks.
- void OnStartCompleted(int result);
- void OnReadCompleted(int bytes_read);
-
- // net::URLRequestJob
- virtual void Start();
- virtual void Kill();
- virtual bool GetMimeType(std::string* mime_type) const;
- virtual bool GetCharset(std::string* charset);
- virtual void GetResponseInfo(net::HttpResponseInfo* info);
- virtual int GetResponseCode() const;
- virtual bool GetContentEncodings(
- std::vector<net::Filter::FilterType>* encoding_types);
- virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
-
- // NotificationObserver
- virtual void Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details);
-
- protected:
- virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read);
-
- private:
- void StartAsync();
- void DetachPlugin();
-
- NotificationRegistrar registrar_;
- scoped_ptr<ScopableCPRequest> cprequest_;
- ChromePluginLib* plugin_;
- net::IOBuffer* read_buffer_;
- int read_buffer_size_;
- ScopedRunnableMethodFactory<URLRequestInterceptJob> method_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(URLRequestInterceptJob);
-};
-
-#endif // CHROME_COMMON_NET_URL_REQUEST_INTERCEPT_JOB_H_
« no previous file with comments | « chrome/common/net/url_fetcher_unittest.cc ('k') | chrome/common/net/url_request_intercept_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698