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

Unified Diff: content/common/request_extra_data.h

Issue 11235068: Move the remaning files in content\common to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 | « content/common/plugin_messages.h ('k') | content/common/request_extra_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/request_extra_data.h
===================================================================
--- content/common/request_extra_data.h (revision 163632)
+++ content/common/request_extra_data.h (working copy)
@@ -10,6 +10,8 @@
#include "content/public/common/page_transition_types.h"
#include "webkit/glue/weburlrequest_extradata_impl.h"
+namespace content {
+
// The RenderView stores an instance of this class in the "extra data" of each
// ResourceRequest (see RenderView::willSendRequest).
class CONTENT_EXPORT RequestExtraData
@@ -22,7 +24,7 @@
bool parent_is_main_frame,
int64 parent_frame_id,
bool allow_download,
- content::PageTransition transition_type,
+ PageTransition transition_type,
int transferred_request_child_id,
int transferred_request_request_id);
virtual ~RequestExtraData();
@@ -32,7 +34,7 @@
bool parent_is_main_frame() const { return parent_is_main_frame_; }
int64 parent_frame_id() const { return parent_frame_id_; }
bool allow_download() const { return allow_download_; }
- content::PageTransition transition_type() const { return transition_type_; }
+ PageTransition transition_type() const { return transition_type_; }
int transferred_request_child_id() const {
return transferred_request_child_id_;
}
@@ -46,11 +48,13 @@
bool parent_is_main_frame_;
int64 parent_frame_id_;
bool allow_download_;
- content::PageTransition transition_type_;
+ PageTransition transition_type_;
int transferred_request_child_id_;
int transferred_request_request_id_;
DISALLOW_COPY_AND_ASSIGN(RequestExtraData);
};
+} // namespace content
+
#endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_
« no previous file with comments | « content/common/plugin_messages.h ('k') | content/common/request_extra_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698