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

Side by Side Diff: content/browser/loader/stream_resource_handler.cc

Issue 1569673002: [NOT FOR LANDING] Detailed loading traces Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 months 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/loader/stream_resource_handler.h" 5 #include "content/browser/loader/stream_resource_handler.h"
6 6 #include "base/trace_event/trace_event.h"
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace content { 9 namespace content {
10 10
11 StreamResourceHandler::StreamResourceHandler(net::URLRequest* request, 11 StreamResourceHandler::StreamResourceHandler(net::URLRequest* request,
12 StreamRegistry* registry, 12 StreamRegistry* registry,
13 const GURL& origin) 13 const GURL& origin)
14 : ResourceHandler(request) { 14 : ResourceHandler(request) {
15 writer_.InitializeStream(registry, origin); 15 writer_.InitializeStream(registry, origin);
16 } 16 }
17 17
18 StreamResourceHandler::~StreamResourceHandler() { 18 StreamResourceHandler::~StreamResourceHandler() {
19 TRACE_EVENT0("toplevel", "StreamResourceHandler::~StreamResourceHandler");
19 } 20 }
20 21
21 void StreamResourceHandler::SetController(ResourceController* controller) { 22 void StreamResourceHandler::SetController(ResourceController* controller) {
22 writer_.set_controller(controller); 23 writer_.set_controller(controller);
23 ResourceHandler::SetController(controller); 24 ResourceHandler::SetController(controller);
24 } 25 }
25 26
26 bool StreamResourceHandler::OnRequestRedirected( 27 bool StreamResourceHandler::OnRequestRedirected(
27 const net::RedirectInfo& redirect_info, 28 const net::RedirectInfo& redirect_info,
28 ResourceResponse* resp, 29 ResourceResponse* resp,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 const std::string& sec_info, 61 const std::string& sec_info,
61 bool* defer) { 62 bool* defer) {
62 writer_.Finalize(); 63 writer_.Finalize();
63 } 64 }
64 65
65 void StreamResourceHandler::OnDataDownloaded(int bytes_downloaded) { 66 void StreamResourceHandler::OnDataDownloaded(int bytes_downloaded) {
66 NOTREACHED(); 67 NOTREACHED();
67 } 68 }
68 69
69 } // namespace content 70 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/resource_scheduler.cc ('k') | content/browser/loader/sync_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698