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

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: ready to review Created 9 years, 10 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: 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 581b30a836988b207f838483f5cc9c188efb516d..0000000000000000000000000000000000000000
--- a/chrome/common/net/url_request_intercept_job.h
+++ /dev/null
@@ -1,73 +0,0 @@
-// Copyright (c) 2010 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 "net/url_request/url_request_job.h"
-#include "chrome/common/chrome_plugin_api.h"
-#include "chrome/common/chrome_plugin_util.h"
-#include "chrome/common/notification_registrar.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<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_

Powered by Google App Engine
This is Rietveld 408576698