| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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/common/resource_priority_change_info.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 ResourcePriorityChangeInfo::ResourcePriorityChangeInfo() {} |
| 10 ResourcePriorityChangeInfo::ResourcePriorityChangeInfo( |
| 11 int request_id, net::RequestPriority priority, int intra_priority_value) |
| 12 : request_id(request_id), |
| 13 priority(priority), |
| 14 intra_priority_value(intra_priority_value) {} |
| 15 |
| 16 ResourcePriorityChangeInfo::~ResourcePriorityChangeInfo() {} |
| 17 |
| 18 } // namespace content |
| 19 |
| OLD | NEW |