Chromium Code Reviews| Index: content/public/common/content_url_request_user_data.cc |
| diff --git a/content/public/common/content_url_request_user_data.cc b/content/public/common/content_url_request_user_data.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a122d302d41bf5e5188f6847cdfde0b29072cd78 |
| --- /dev/null |
| +++ b/content/public/common/content_url_request_user_data.cc |
| @@ -0,0 +1,27 @@ |
| +// 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/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
|
| + |
| +namespace content { |
| + |
| +ContentURLRequestUserData::ContentURLRequestUserData(int process_id, |
| + int routing_id) |
| + : process_id_(process_id), |
| + routing_id_(routing_id) { |
| +} |
| + |
| +ContentURLRequestUserData::ContentURLRequestUserData() |
| + : process_id_(-1), |
| + routing_id_(-1) { |
| +} |
| + |
| +ContentURLRequestUserData::~ContentURLRequestUserData() { |
| +} |
| + |
| +// static |
| +const void* ContentURLRequestUserData::kUserDataKey = |
| + &ContentURLRequestUserData::kUserDataKey; |
| + |
| +} // namespace content |