OLD | NEW |
---|---|
(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 | |
OLD | NEW |