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

Unified Diff: webkit/glue/resource_loader_bridge.h

Issue 9413038: SPDY - chrome:loadtimes() should display negotiated NPN protocol. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: webkit/glue/resource_loader_bridge.h
===================================================================
--- webkit/glue/resource_loader_bridge.h (revision 122395)
+++ webkit/glue/resource_loader_bridge.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
@@ -33,6 +33,7 @@
#include "net/base/host_port_pair.h"
#include "net/url_request/url_request_status.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRequest.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLResponse.h"
Ryan Sleevi 2012/02/17 05:37:08 Is this still necessary?
ramant (doing other things) 2012/02/17 21:47:35 Done.
#include "third_party/WebKit/Source/WebKit/chromium/public/WebReferrerPolicy.h"
#include "webkit/glue/resource_type.h"
#include "webkit/glue/webkit_glue_export.h"
@@ -195,6 +196,9 @@
// Note: we cannot tell if a transparent proxy may have been involved.
bool was_fetched_via_proxy;
+ // NPN protocol negotiated with the server.
+ std::string npn_negotiated_protocol;
+
// Remote address of the socket which fetched this resource.
net::HostPortPair socket_address;
};

Powered by Google App Engine
This is Rietveld 408576698