Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: content/public/browser/resource_dispatcher_host_delegate.h

Issue 10416003: RefCounted types should not have public destructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "ipc/ipc_message.h" 13 #include "ipc/ipc_message.h"
14 #include "webkit/glue/resource_type.h" 14 #include "webkit/glue/resource_type.h"
15 15
16 class GURL; 16 class GURL;
17 template <class T> class ScopedVector; 17 template <class T> class ScopedVector;
18 18
19 namespace content { 19 namespace content {
20 class ResourceContext; 20 class ResourceContext;
21 class ResourceResponse;
21 class ResourceThrottle; 22 class ResourceThrottle;
22 struct Referrer; 23 struct Referrer;
23 struct ResourceResponse;
24 } 24 }
25 25
26 namespace net { 26 namespace net {
27 class AuthChallengeInfo; 27 class AuthChallengeInfo;
28 class SSLCertRequestInfo; 28 class SSLCertRequestInfo;
29 class URLRequest; 29 class URLRequest;
30 } 30 }
31 31
32 namespace content { 32 namespace content {
33 33
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 ResourceResponse* response); 115 ResourceResponse* response);
116 116
117 protected: 117 protected:
118 ResourceDispatcherHostDelegate(); 118 ResourceDispatcherHostDelegate();
119 virtual ~ResourceDispatcherHostDelegate(); 119 virtual ~ResourceDispatcherHostDelegate();
120 }; 120 };
121 121
122 } // namespace content 122 } // namespace content
123 123
124 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 124 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698