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

Side by Side Diff: content/common/resource_priority_change_info.cc

Issue 2552703003: Make reprioritization IPC batch rather than per-request.
Patch Set: Fix some typos. Created 4 years 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
OLDNEW
(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
OLDNEW
« content/child/resource_dispatcher.cc ('K') | « content/common/resource_priority_change_info.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698