| Index: content/common/websocket.h
|
| diff --git a/content/common/websocket.h b/content/common/websocket.h
|
| index 108131877724a180cf169aa9b5e0e517451098c6..e79fc988c058a5f9648fdd9a81b4add6095280d6 100644
|
| --- a/content/common/websocket.h
|
| +++ b/content/common/websocket.h
|
| @@ -9,6 +9,7 @@
|
| #include <utility>
|
| #include <vector>
|
|
|
| +#include "base/strings/string_split.h"
|
| #include "base/time/time.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -31,7 +32,7 @@ struct WebSocketHandshakeRequest {
|
| // The request URL
|
| GURL url;
|
| // Additional HTTP request headers
|
| - std::vector<std::pair<std::string, std::string> > headers;
|
| + base::StringPairs headers;
|
| // HTTP request headers raw string
|
| std::string headers_text;
|
| // The time that this request is sent
|
|
|