OLD | NEW |
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 Loading... |
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 |
OLD | NEW |