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 21 matching lines...) Expand all Loading... |
32 #include "content/public/browser/notification_registrar.h" | 32 #include "content/public/browser/notification_registrar.h" |
33 #include "content/public/browser/web_contents.h" | 33 #include "content/public/browser/web_contents.h" |
34 #include "content/public/common/renderer_preferences.h" | 34 #include "content/public/common/renderer_preferences.h" |
35 #include "content/public/common/resource_type.h" | 35 #include "content/public/common/resource_type.h" |
36 #include "content/public/common/three_d_api_types.h" | 36 #include "content/public/common/three_d_api_types.h" |
37 #include "net/base/load_states.h" | 37 #include "net/base/load_states.h" |
38 #include "net/http/http_response_headers.h" | 38 #include "net/http/http_response_headers.h" |
39 #include "third_party/WebKit/public/web/WebDragOperation.h" | 39 #include "third_party/WebKit/public/web/WebDragOperation.h" |
40 #include "ui/base/page_transition_types.h" | 40 #include "ui/base/page_transition_types.h" |
41 #include "ui/gfx/geometry/rect_f.h" | 41 #include "ui/gfx/geometry/rect_f.h" |
42 #include "ui/gfx/size.h" | 42 #include "ui/gfx/geometry/size.h" |
43 | 43 |
44 struct BrowserPluginHostMsg_ResizeGuest_Params; | 44 struct BrowserPluginHostMsg_ResizeGuest_Params; |
45 struct ViewHostMsg_DateTimeDialogValue_Params; | 45 struct ViewHostMsg_DateTimeDialogValue_Params; |
46 struct ViewMsg_PostMessage_Params; | 46 struct ViewMsg_PostMessage_Params; |
47 | 47 |
48 namespace content { | 48 namespace content { |
49 class BrowserPluginEmbedder; | 49 class BrowserPluginEmbedder; |
50 class BrowserPluginGuest; | 50 class BrowserPluginGuest; |
51 class BrowserPluginGuestManager; | 51 class BrowserPluginGuestManager; |
52 class DateTimeChooserAndroid; | 52 class DateTimeChooserAndroid; |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1244 // Adds/removes a callback called on creation of each new WebContents. | 1244 // Adds/removes a callback called on creation of each new WebContents. |
1245 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1245 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1246 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1246 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1247 | 1247 |
1248 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1248 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1249 }; | 1249 }; |
1250 | 1250 |
1251 } // namespace content | 1251 } // namespace content |
1252 | 1252 |
1253 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1253 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |