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

Side by Side Diff: content/child/web_data_consumer_handle_impl.cc

Issue 901773002: Adding instrumentation to locate the source of jankiness. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile + remove some tracking Created 5 years, 10 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
« no previous file with comments | « content/browser/webui/url_data_manager_backend.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/child/web_data_consumer_handle_impl.h" 5 #include "content/child/web_data_consumer_handle_impl.h"
6 6
7 #include <limits> 7 #include <limits>
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/profiler/scoped_tracker.h"
10 #include "third_party/mojo/src/mojo/public/c/system/types.h" 11 #include "third_party/mojo/src/mojo/public/c/system/types.h"
11 12
12 namespace content { 13 namespace content {
13 14
14 typedef blink::WebDataConsumerHandle::Result Result; 15 typedef blink::WebDataConsumerHandle::Result Result;
15 16
16 WebDataConsumerHandleImpl::WebDataConsumerHandleImpl(Handle handle) 17 WebDataConsumerHandleImpl::WebDataConsumerHandleImpl(Handle handle)
17 : handle_(handle.Pass()), client_(nullptr) {} 18 : handle_(handle.Pass()), client_(nullptr) {}
18 19
19 WebDataConsumerHandleImpl::~WebDataConsumerHandleImpl() {} 20 WebDataConsumerHandleImpl::~WebDataConsumerHandleImpl() {}
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 103 }
103 return ShouldWait; 104 return ShouldWait;
104 case MOJO_RESULT_RESOURCE_EXHAUSTED: 105 case MOJO_RESULT_RESOURCE_EXHAUSTED:
105 return ResourceExhausted; 106 return ResourceExhausted;
106 default: 107 default:
107 return UnexpectedError; 108 return UnexpectedError;
108 } 109 }
109 } 110 }
110 111
111 void WebDataConsumerHandleImpl::OnHandleGotReadable(MojoResult) { 112 void WebDataConsumerHandleImpl::OnHandleGotReadable(MojoResult) {
113 // TODO(pkasting): Remove ScopedTracker below once crbug.com/455434 is
114 // fixed.
115 tracked_objects::ScopedTracker tracking_profile(
116 FROM_HERE_WITH_EXPLICIT_FUNCTION(
117 "455434 WebDataConsumerHandleImpl::OnHandleGotReadable"));
112 DCHECK(client_); 118 DCHECK(client_);
113 client_->didGetReadable(); 119 client_->didGetReadable();
114 } 120 }
115 121
116 } // namespace content 122 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/webui/url_data_manager_backend.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698