| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef NET_HTTP_HTTP_REQUEST_INFO_H__ | 5 #ifndef NET_HTTP_HTTP_REQUEST_INFO_H__ |
| 6 #define NET_HTTP_HTTP_REQUEST_INFO_H__ | 6 #define NET_HTTP_HTTP_REQUEST_INFO_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
| 12 #include "net/base/privacy_mode.h" | 12 #include "net/base/privacy_mode.h" |
| 13 #include "net/http/http_request_headers.h" | 13 #include "net/http/http_request_headers.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 namespace net { | 16 namespace net { |
| 17 | 17 |
| 18 class UploadDataStream; | 18 class UploadDataStream; |
| 19 | 19 |
| 20 struct NET_EXPORT HttpRequestInfo { | 20 struct NET_EXPORT HttpRequestInfo { |
| 21 enum RequestMotivation{ | 21 enum RequestMotivation { |
| 22 // TODO(mbelshe): move these into Client Socket. | 22 // TODO(mbelshe): move these into Client Socket. |
| 23 PRECONNECT_MOTIVATED, // Request was motivated by a prefetch. | 23 PRECONNECT_MOTIVATED, // Request was motivated by a prefetch. |
| 24 OMNIBOX_MOTIVATED, // Request was motivated by the omnibox. | 24 OMNIBOX_MOTIVATED, // Request was motivated by the omnibox. |
| 25 NORMAL_MOTIVATION, // No special motivation associated with the request. | 25 NORMAL_MOTIVATION, // No special motivation associated with the request. |
| 26 EARLY_LOAD_MOTIVATED, // When browser asks a tab to open an URL, this short | 26 EARLY_LOAD_MOTIVATED, // When browser asks a tab to open an URL, this short |
| 27 // circuits that path (of waiting for the renderer to | 27 // circuits that path (of waiting for the renderer to |
| 28 // do the URL request), and starts loading ASAP. | 28 // do the URL request), and starts loading ASAP. |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 HttpRequestInfo(); | 31 HttpRequestInfo(); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 50 RequestMotivation motivation; | 50 RequestMotivation motivation; |
| 51 | 51 |
| 52 // If enabled, then request must be sent over connection that cannot be | 52 // If enabled, then request must be sent over connection that cannot be |
| 53 // tracked by the server (e.g. without channel id). | 53 // tracked by the server (e.g. without channel id). |
| 54 PrivacyMode privacy_mode; | 54 PrivacyMode privacy_mode; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace net | 57 } // namespace net |
| 58 | 58 |
| 59 #endif // NET_HTTP_HTTP_REQUEST_INFO_H__ | 59 #endif // NET_HTTP_HTTP_REQUEST_INFO_H__ |
| OLD | NEW |