OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 17 matching lines...) Expand all Loading... |
28 class AutomationResourceRoutingDelegate; | 28 class AutomationResourceRoutingDelegate; |
29 class BackgroundContents; | 29 class BackgroundContents; |
30 struct BookmarkNodeData; | 30 struct BookmarkNodeData; |
31 class BookmarkNode; | 31 class BookmarkNode; |
32 struct ContextMenuParams; | 32 struct ContextMenuParams; |
33 class FilePath; | 33 class FilePath; |
34 class GURL; | 34 class GURL; |
35 class ListValue; | 35 class ListValue; |
36 struct NativeWebKeyboardEvent; | 36 struct NativeWebKeyboardEvent; |
37 class NavigationEntry; | 37 class NavigationEntry; |
38 class OSExchangeData; | |
39 class Profile; | 38 class Profile; |
40 struct RendererPreferences; | 39 struct RendererPreferences; |
41 class RenderProcessHost; | 40 class RenderProcessHost; |
42 class RenderViewHost; | 41 class RenderViewHost; |
43 class ResourceRedirectDetails; | 42 class ResourceRedirectDetails; |
44 class ResourceRequestDetails; | 43 class ResourceRequestDetails; |
45 class SkBitmap; | 44 class SkBitmap; |
46 class SSLClientAuthHandler; | 45 class SSLClientAuthHandler; |
47 class SSLAddCertHandler; | 46 class SSLAddCertHandler; |
48 class TabContents; | 47 class TabContents; |
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 bool remember) {} | 754 bool remember) {} |
756 | 755 |
757 // Update the content restrictions, i.e. disable print/copy. | 756 // Update the content restrictions, i.e. disable print/copy. |
758 virtual void UpdateContentRestrictions(int restrictions) {} | 757 virtual void UpdateContentRestrictions(int restrictions) {} |
759 | 758 |
760 protected: | 759 protected: |
761 virtual ~RenderViewHostDelegate() {} | 760 virtual ~RenderViewHostDelegate() {} |
762 }; | 761 }; |
763 | 762 |
764 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 763 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
OLD | NEW |