| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <functional> | 10 #include <functional> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 struct ViewHostMsg_DateTimeDialogValue_Params; | 52 struct ViewHostMsg_DateTimeDialogValue_Params; |
| 53 | 53 |
| 54 namespace service_manager { | 54 namespace service_manager { |
| 55 class InterfaceProvider; | 55 class InterfaceProvider; |
| 56 } | 56 } |
| 57 | 57 |
| 58 namespace content { | 58 namespace content { |
| 59 class BrowserPluginEmbedder; | 59 class BrowserPluginEmbedder; |
| 60 class BrowserPluginGuest; | 60 class BrowserPluginGuest; |
| 61 class DateTimeChooserAndroid; | 61 class DateTimeChooserAndroid; |
| 62 class DownloadItem; | |
| 63 class FindRequestManager; | 62 class FindRequestManager; |
| 64 class HostZoomMapObserver; | 63 class HostZoomMapObserver; |
| 65 class InterstitialPageImpl; | 64 class InterstitialPageImpl; |
| 66 class JavaScriptDialogManager; | 65 class JavaScriptDialogManager; |
| 67 class LoaderIOThreadNotifier; | 66 class LoaderIOThreadNotifier; |
| 68 class ManifestManagerHost; | 67 class ManifestManagerHost; |
| 69 class MediaWebContentsObserver; | 68 class MediaWebContentsObserver; |
| 70 class PluginContentOriginWhitelist; | 69 class PluginContentOriginWhitelist; |
| 71 class PowerSaveBlocker; | |
| 72 class RenderViewHost; | 70 class RenderViewHost; |
| 73 class RenderViewHostDelegateView; | 71 class RenderViewHostDelegateView; |
| 74 class RenderWidgetHostImpl; | 72 class RenderWidgetHostImpl; |
| 75 class RenderWidgetHostInputEventRouter; | 73 class RenderWidgetHostInputEventRouter; |
| 76 class SavePackage; | 74 class SavePackage; |
| 77 class ScreenOrientationDispatcherHost; | 75 class ScreenOrientationDispatcherHost; |
| 78 class SiteInstance; | 76 class SiteInstance; |
| 79 class TestWebContents; | 77 class TestWebContents; |
| 80 class TextInputManager; | 78 class TextInputManager; |
| 81 class WakeLockServiceContext; | 79 class WakeLockServiceContext; |
| (...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1452 // Adds/removes a callback called on creation of each new WebContents. | 1450 // Adds/removes a callback called on creation of each new WebContents. |
| 1453 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1451 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1454 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1452 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1455 | 1453 |
| 1456 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1454 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1457 }; | 1455 }; |
| 1458 | 1456 |
| 1459 } // namespace content | 1457 } // namespace content |
| 1460 | 1458 |
| 1461 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1459 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |