| 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 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_DELEGATE_H_ |
| 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_DELEGATE_H_ | 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 // made to the delegate. The response body is returned as a stream in | 32 // made to the delegate. The response body is returned as a stream in |
| 33 // |body_stream|. | 33 // |body_stream|. |
| 34 virtual void OnResponseStarted( | 34 virtual void OnResponseStarted( |
| 35 const scoped_refptr<ResourceResponse>& response, | 35 const scoped_refptr<ResourceResponse>& response, |
| 36 scoped_ptr<StreamHandle> body_stream) = 0; | 36 scoped_ptr<StreamHandle> body_stream) = 0; |
| 37 | 37 |
| 38 // Called if the request fails before receving a response. |net_error| is a | 38 // Called if the request fails before receving a response. |net_error| is a |
| 39 // network error code for the failure. | 39 // network error code for the failure. |
| 40 virtual void OnRequestFailed(int net_error) = 0; | 40 virtual void OnRequestFailed(int net_error) = 0; |
| 41 | 41 |
| 42 // Called when a begin navigation request is handled, right before the |
| 43 // first potential network request happens, providing the |timestamp| when |
| 44 // that happened in the IO thread. |
| 45 virtual void NavigationRequested(base::TimeTicks timestamp) = 0; |
| 46 |
| 42 protected: | 47 protected: |
| 43 NavigationURLLoaderDelegate() {} | 48 NavigationURLLoaderDelegate() {} |
| 44 virtual ~NavigationURLLoaderDelegate() {} | 49 virtual ~NavigationURLLoaderDelegate() {} |
| 45 | 50 |
| 46 private: | 51 private: |
| 47 DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderDelegate); | 52 DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderDelegate); |
| 48 }; | 53 }; |
| 49 | 54 |
| 50 } // namespace content | 55 } // namespace content |
| 51 | 56 |
| 52 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_DELEGATE_H_ | 57 #endif // CONTENT_BROWSER_LOADER_NAVIGATION_URL_LOADER_DELEGATE_H_ |
| OLD | NEW |