| OLD | NEW |
| 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "net/base/load_states.h" | 27 #include "net/base/load_states.h" |
| 28 #include "ui/gfx/rect_f.h" | 28 #include "ui/gfx/rect_f.h" |
| 29 #include "ui/gfx/size.h" | 29 #include "ui/gfx/size.h" |
| 30 #include "webkit/glue/resource_type.h" | 30 #include "webkit/glue/resource_type.h" |
| 31 | 31 |
| 32 #if defined(OS_WIN) | 32 #if defined(OS_WIN) |
| 33 #include "base/win/scoped_handle.h" | 33 #include "base/win/scoped_handle.h" |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 class SavePackage; | 36 class SavePackage; |
| 37 class SessionStorageNamespaceImpl; | |
| 38 struct BrowserPluginHostMsg_ResizeGuest_Params; | 37 struct BrowserPluginHostMsg_ResizeGuest_Params; |
| 39 struct ViewMsg_PostMessage_Params; | 38 struct ViewMsg_PostMessage_Params; |
| 40 | 39 |
| 41 namespace webkit_glue { | 40 namespace webkit_glue { |
| 42 struct WebIntentData; | 41 struct WebIntentData; |
| 43 struct WebIntentServiceData; | 42 struct WebIntentServiceData; |
| 44 } | 43 } |
| 45 | 44 |
| 46 namespace content { | 45 namespace content { |
| 47 class BrowserPluginEmbedder; | 46 class BrowserPluginEmbedder; |
| 48 class BrowserPluginGuest; | 47 class BrowserPluginGuest; |
| 49 class ColorChooser; | 48 class ColorChooser; |
| 50 class DownloadItem; | 49 class DownloadItem; |
| 51 class InterstitialPageImpl; | 50 class InterstitialPageImpl; |
| 52 class JavaScriptDialogCreator; | 51 class JavaScriptDialogCreator; |
| 53 class RenderViewHost; | 52 class RenderViewHost; |
| 54 class RenderViewHostDelegateView; | 53 class RenderViewHostDelegateView; |
| 55 class RenderViewHostImpl; | 54 class RenderViewHostImpl; |
| 56 class RenderWidgetHostImpl; | 55 class RenderWidgetHostImpl; |
| 56 class SessionStorageNamespaceImpl; |
| 57 class SiteInstance; | 57 class SiteInstance; |
| 58 class TestWebContents; | 58 class TestWebContents; |
| 59 class WebContentsDelegate; | 59 class WebContentsDelegate; |
| 60 class WebContentsImpl; | 60 class WebContentsImpl; |
| 61 class WebContentsObserver; | 61 class WebContentsObserver; |
| 62 class WebContentsView; | 62 class WebContentsView; |
| 63 class WebContentsViewDelegate; | 63 class WebContentsViewDelegate; |
| 64 struct LoadNotificationDetails; | 64 struct LoadNotificationDetails; |
| 65 | 65 |
| 66 // Factory function for the implementations that content knows about. Takes | 66 // Factory function for the implementations that content knows about. Takes |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 // All live RenderWidgetHostImpls that are created by this object and may | 864 // All live RenderWidgetHostImpls that are created by this object and may |
| 865 // outlive it. | 865 // outlive it. |
| 866 std::set<RenderWidgetHostImpl*> created_widgets_; | 866 std::set<RenderWidgetHostImpl*> created_widgets_; |
| 867 | 867 |
| 868 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 868 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 869 }; | 869 }; |
| 870 | 870 |
| 871 } // namespace content | 871 } // namespace content |
| 872 | 872 |
| 873 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 873 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |