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

Side by Side Diff: content/common/request_extra_data.h

Issue 10795071: Merge 147060 to 1180 (M21) - PPAPI (Flash): Properly honor Pepper url requests with custom user age… (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | content/common/request_extra_data.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_COMMON_REQUEST_EXTRA_DATA_H_ 5 #ifndef CONTENT_COMMON_REQUEST_EXTRA_DATA_H_
6 #define CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ 6 #define CONTENT_COMMON_REQUEST_EXTRA_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/common/page_transition_types.h" 11 #include "content/public/common/page_transition_types.h"
12 #include "webkit/glue/weburlrequest_extradata_impl.h" 12 #include "webkit/glue/weburlrequest_extradata_impl.h"
13 13
14 // The RenderView stores an instance of this class in the "extra data" of each 14 // The RenderView stores an instance of this class in the "extra data" of each
15 // ResourceRequest (see RenderView::willSendRequest). 15 // ResourceRequest (see RenderView::willSendRequest).
16 class CONTENT_EXPORT RequestExtraData 16 class CONTENT_EXPORT RequestExtraData
17 : NON_EXPORTED_BASE(public webkit_glue::WebURLRequestExtraDataImpl) { 17 : NON_EXPORTED_BASE(public webkit_glue::WebURLRequestExtraDataImpl) {
18 public: 18 public:
19 RequestExtraData(WebKit::WebReferrerPolicy referrer_policy, 19 RequestExtraData(WebKit::WebReferrerPolicy referrer_policy,
20 const WebKit::WebString& custom_user_agent,
20 bool is_main_frame, 21 bool is_main_frame,
21 int64 frame_id, 22 int64 frame_id,
22 bool parent_is_main_frame, 23 bool parent_is_main_frame,
23 int64 parent_frame_id, 24 int64 parent_frame_id,
24 bool allow_download, 25 bool allow_download,
25 content::PageTransition transition_type, 26 content::PageTransition transition_type,
26 int transferred_request_child_id, 27 int transferred_request_child_id,
27 int transferred_request_request_id); 28 int transferred_request_request_id);
28 virtual ~RequestExtraData(); 29 virtual ~RequestExtraData();
29 30
(...skipping 17 matching lines...) Expand all
47 int64 parent_frame_id_; 48 int64 parent_frame_id_;
48 bool allow_download_; 49 bool allow_download_;
49 content::PageTransition transition_type_; 50 content::PageTransition transition_type_;
50 int transferred_request_child_id_; 51 int transferred_request_child_id_;
51 int transferred_request_request_id_; 52 int transferred_request_request_id_;
52 53
53 DISALLOW_COPY_AND_ASSIGN(RequestExtraData); 54 DISALLOW_COPY_AND_ASSIGN(RequestExtraData);
54 }; 55 };
55 56
56 #endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ 57 #endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_
OLDNEW
« no previous file with comments | « no previous file | content/common/request_extra_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698