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

Side by Side Diff: content/public/common/content_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: clang fix 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "content/public/common/content_url_request_user_data.h"
jam 2012/03/01 19:30:42 can we avoid this cc file? we try to avoid cc file
6
7 namespace content {
8
9 ContentURLRequestUserData::ContentURLRequestUserData(int process_id,
10 int routing_id)
11 : process_id_(process_id),
12 routing_id_(routing_id) {
13 }
14
15 ContentURLRequestUserData::ContentURLRequestUserData()
16 : process_id_(-1),
17 routing_id_(-1) {
18 }
19
20 ContentURLRequestUserData::~ContentURLRequestUserData() {
21 }
22
23 // static
24 const void* ContentURLRequestUserData::kUserDataKey =
25 &ContentURLRequestUserData::kUserDataKey;
26
27 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698