blob: 5c16655027ae4ef56fcf59f8e02b98d3de6aa5fb [file] [log] [blame]
// 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"
namespace content {
URLRequestUserData::URLRequestUserData(int render_process_id,
int render_frame_id)
: render_process_id_(render_process_id),
render_frame_id_(render_frame_id) {}
URLRequestUserData::~URLRequestUserData() {}
// static
const void* const URLRequestUserData::kUserDataKey =
&URLRequestUserData::kUserDataKey;
} // namespace content