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

Side by Side Diff: webkit/glue/resource_loader_bridge.cc

Issue 2909016: DevTools & WebTiming : Migrate from PassiveLogCollector to dedicated LoadTimingObserver. (Closed)
Patch Set: Fixed tests. Created 10 years, 5 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 | « webkit/glue/resource_loader_bridge.h ('k') | webkit/glue/weburlloader_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 (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 "webkit/glue/resource_loader_bridge.h" 5 #include "webkit/glue/resource_loader_bridge.h"
6 6
7 #include "webkit/appcache/appcache_interfaces.h" 7 #include "webkit/appcache/appcache_interfaces.h"
8 #include "net/http/http_response_headers.h" 8 #include "net/http/http_response_headers.h"
9 9
10 namespace webkit_glue { 10 namespace webkit_glue {
(...skipping 27 matching lines...) Expand all
38 38
39 ResourceLoaderBridge::LoadTimingInfo::~LoadTimingInfo() { 39 ResourceLoaderBridge::LoadTimingInfo::~LoadTimingInfo() {
40 } 40 }
41 41
42 ResourceLoaderBridge::ResponseInfo::ResponseInfo() { 42 ResourceLoaderBridge::ResponseInfo::ResponseInfo() {
43 content_length = -1; 43 content_length = -1;
44 appcache_id = appcache::kNoCacheId; 44 appcache_id = appcache::kNoCacheId;
45 was_fetched_via_spdy = false; 45 was_fetched_via_spdy = false;
46 was_npn_negotiated = false; 46 was_npn_negotiated = false;
47 connection_id = 0; 47 connection_id = 0;
48 connection_reused = false;
48 was_alternate_protocol_available = false; 49 was_alternate_protocol_available = false;
49 was_fetched_via_proxy = false; 50 was_fetched_via_proxy = false;
50 } 51 }
51 52
52 ResourceLoaderBridge::ResponseInfo::~ResponseInfo() { 53 ResourceLoaderBridge::ResponseInfo::~ResponseInfo() {
53 } 54 }
54 55
55 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() { 56 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() {
56 } 57 }
57 58
58 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() { 59 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() {
59 } 60 }
60 61
61 ResourceLoaderBridge::ResourceLoaderBridge() { 62 ResourceLoaderBridge::ResourceLoaderBridge() {
62 } 63 }
63 64
64 ResourceLoaderBridge::~ResourceLoaderBridge() { 65 ResourceLoaderBridge::~ResourceLoaderBridge() {
65 } 66 }
66 67
67 } // namespace webkit_glue 68 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/resource_loader_bridge.h ('k') | webkit/glue/weburlloader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698