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

Unified Diff: content/common/net/url_request_user_data.cc

Issue 9572001: Do cookie checks in NetworkDelegate instead of the URLRequest::Delegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing Created 8 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 | « content/common/net/url_request_user_data.h ('k') | content/content_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/net/url_request_user_data.cc
diff --git a/content/common/net/url_request_user_data.cc b/content/common/net/url_request_user_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a2529f8a1cda1d76cc773ef08a2c898007a2c089
--- /dev/null
+++ b/content/common/net/url_request_user_data.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2012 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.
+
+#include "content/common/net/url_request_user_data.h"
+
+URLRequestUserData::URLRequestUserData(int render_process_id,
+ int render_view_id)
+ : render_process_id_(render_process_id),
+ render_view_id_(render_view_id) {}
+
+URLRequestUserData::~URLRequestUserData() {}
+
+// static
+const void* URLRequestUserData::kUserDataKey =
+ static_cast<const void*>(&URLRequestUserData::kUserDataKey);
« no previous file with comments | « content/common/net/url_request_user_data.h ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698