Chromium Code Reviews| Index: content/public/browser/resource_context.h |
| =================================================================== |
| --- content/public/browser/resource_context.h (revision 121287) |
| +++ content/public/browser/resource_context.h (working copy) |
| @@ -2,15 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CONTENT_BROWSER_RESOURCE_CONTEXT_H_ |
| -#define CONTENT_BROWSER_RESOURCE_CONTEXT_H_ |
| +#ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ |
| +#define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ |
| -#include <map> |
| - |
| #include "base/basictypes.h" |
| -#include "base/callback_forward.h" |
| -#include "base/memory/ref_counted.h" |
| -#include "content/common/content_export.h" |
| class AudioManager; |
| class ChromeAppCacheService; |
| @@ -40,9 +35,9 @@ |
| // ResourceContext contains the relevant context information required for |
| // resource loading. It lives on the IO thread, although it is constructed on |
| // the UI thread. |
| -class CONTENT_EXPORT ResourceContext { |
| +class ResourceContext { |
| public: |
| - virtual ~ResourceContext(); |
| + virtual ~ResourceContext() {} |
|
Avi (use Gerrit)
2012/02/09 21:42:15
Fix indentation.
|
| virtual net::HostResolver* GetHostResolver() = 0; |
| virtual net::URLRequestContext* GetRequestContext() = 0; |
| @@ -59,4 +54,4 @@ |
| } // namespace content |
| -#endif // CONTENT_BROWSER_RESOURCE_CONTEXT_H_ |
| +#endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ |