| 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 25 matching lines...) Expand all Loading... |
| 36 #include "content/public/common/renderer_preferences.h" | 36 #include "content/public/common/renderer_preferences.h" |
| 37 #include "content/public/common/resource_type.h" | 37 #include "content/public/common/resource_type.h" |
| 38 #include "content/public/common/three_d_api_types.h" | 38 #include "content/public/common/three_d_api_types.h" |
| 39 #include "net/base/load_states.h" | 39 #include "net/base/load_states.h" |
| 40 #include "net/http/http_response_headers.h" | 40 #include "net/http/http_response_headers.h" |
| 41 #include "third_party/WebKit/public/web/WebDragOperation.h" | 41 #include "third_party/WebKit/public/web/WebDragOperation.h" |
| 42 #include "ui/base/page_transition_types.h" | 42 #include "ui/base/page_transition_types.h" |
| 43 #include "ui/gfx/geometry/rect_f.h" | 43 #include "ui/gfx/geometry/rect_f.h" |
| 44 #include "ui/gfx/geometry/size.h" | 44 #include "ui/gfx/geometry/size.h" |
| 45 | 45 |
| 46 struct BrowserPluginHostMsg_ResizeGuest_Params; | |
| 47 struct ViewHostMsg_DateTimeDialogValue_Params; | 46 struct ViewHostMsg_DateTimeDialogValue_Params; |
| 48 | 47 |
| 49 namespace content { | 48 namespace content { |
| 50 class BrowserPluginEmbedder; | 49 class BrowserPluginEmbedder; |
| 51 class BrowserPluginGuest; | 50 class BrowserPluginGuest; |
| 52 class BrowserPluginGuestManager; | |
| 53 class DateTimeChooserAndroid; | 51 class DateTimeChooserAndroid; |
| 54 class DownloadItem; | 52 class DownloadItem; |
| 55 class GeolocationServiceContext; | 53 class GeolocationServiceContext; |
| 56 class InterstitialPageImpl; | 54 class InterstitialPageImpl; |
| 57 class JavaScriptDialogManager; | 55 class JavaScriptDialogManager; |
| 58 class ManifestManagerHost; | 56 class ManifestManagerHost; |
| 59 class MediaWebContentsObserver; | 57 class MediaWebContentsObserver; |
| 60 class PluginContentOriginWhitelist; | 58 class PluginContentOriginWhitelist; |
| 61 class PowerSaveBlocker; | 59 class PowerSaveBlocker; |
| 62 class RenderViewHost; | 60 class RenderViewHost; |
| (...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1350 // Adds/removes a callback called on creation of each new WebContents. | 1348 // Adds/removes a callback called on creation of each new WebContents. |
| 1351 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1349 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1352 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1350 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1353 | 1351 |
| 1354 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1352 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1355 }; | 1353 }; |
| 1356 | 1354 |
| 1357 } // namespace content | 1355 } // namespace content |
| 1358 | 1356 |
| 1359 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1357 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |