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

Side by Side Diff: content/browser/loader/resource_request_info_impl.h

Issue 132233022: Fix chrome.webRequest.onBeforeRequest for requests coming from NPAPI plugin processes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ 5 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_
6 #define CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ 6 #define CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 virtual int GetChildID() const OVERRIDE; 68 virtual int GetChildID() const OVERRIDE;
69 virtual int GetRouteID() const OVERRIDE; 69 virtual int GetRouteID() const OVERRIDE;
70 virtual int GetOriginPID() const OVERRIDE; 70 virtual int GetOriginPID() const OVERRIDE;
71 virtual int GetRequestID() const OVERRIDE; 71 virtual int GetRequestID() const OVERRIDE;
72 virtual int GetRenderFrameID() const OVERRIDE; 72 virtual int GetRenderFrameID() const OVERRIDE;
73 virtual bool IsMainFrame() const OVERRIDE; 73 virtual bool IsMainFrame() const OVERRIDE;
74 virtual int64 GetFrameID() const OVERRIDE; 74 virtual int64 GetFrameID() const OVERRIDE;
75 virtual bool ParentIsMainFrame() const OVERRIDE; 75 virtual bool ParentIsMainFrame() const OVERRIDE;
76 virtual int64 GetParentFrameID() const OVERRIDE; 76 virtual int64 GetParentFrameID() const OVERRIDE;
77 virtual ResourceType::Type GetResourceType() const OVERRIDE; 77 virtual ResourceType::Type GetResourceType() const OVERRIDE;
78 virtual int GetProcessType() const OVERRIDE;
78 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; 79 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE;
79 virtual PageTransition GetPageTransition() const OVERRIDE; 80 virtual PageTransition GetPageTransition() const OVERRIDE;
80 virtual bool HasUserGesture() const OVERRIDE; 81 virtual bool HasUserGesture() const OVERRIDE;
81 virtual bool WasIgnoredByHandler() const OVERRIDE; 82 virtual bool WasIgnoredByHandler() const OVERRIDE;
82 virtual bool GetAssociatedRenderFrame(int* render_process_id, 83 virtual bool GetAssociatedRenderFrame(int* render_process_id,
83 int* render_frame_id) const OVERRIDE; 84 int* render_frame_id) const OVERRIDE;
84 virtual bool IsAsync() const OVERRIDE; 85 virtual bool IsAsync() const OVERRIDE;
85 virtual bool IsDownload() const OVERRIDE; 86 virtual bool IsDownload() const OVERRIDE;
86 87
87 88
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // exits during a transfer. 187 // exits during a transfer.
187 base::WeakPtr<ResourceMessageFilter> filter_; 188 base::WeakPtr<ResourceMessageFilter> filter_;
188 bool is_async_; 189 bool is_async_;
189 190
190 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); 191 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl);
191 }; 192 };
192 193
193 } // namespace content 194 } // namespace content
194 195
195 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ 196 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/loader/resource_loader.cc ('k') | content/browser/loader/resource_request_info_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698