| Index: content/public/browser/resource_controller.h
|
| diff --git a/content/public/browser/resource_controller.h b/content/public/browser/resource_controller.h
|
| index db4b234ca4ce23bee089f9c8fe53225e0d90d8fd..e18d0ae0166516e4bac086c11e5d252271d07c91 100644
|
| --- a/content/public/browser/resource_controller.h
|
| +++ b/content/public/browser/resource_controller.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_CONTROLLER_H_
|
| #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTROLLER_H_
|
|
|
| +#include "content/common/content_export.h"
|
| +
|
| namespace content {
|
|
|
| // Used to either resume a deferred resource load or cancel a resource load at
|
| @@ -12,7 +14,7 @@ namespace content {
|
| // requester of the resource to act like the request was never made. By
|
| // default, load is cancelled with ERR_ABORTED code. CancelWithError can be used
|
| // to cancel load with any other error code.
|
| -class ResourceController {
|
| +class CONTENT_EXPORT ResourceController {
|
| public:
|
| virtual void Cancel() = 0;
|
| virtual void CancelAndIgnore() = 0;
|
|
|