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 26 matching lines...) Expand all Loading... |
37 #include "content/public/browser/notification_observer.h" | 37 #include "content/public/browser/notification_observer.h" |
38 #include "content/public/browser/notification_registrar.h" | 38 #include "content/public/browser/notification_registrar.h" |
39 #include "content/public/browser/web_contents.h" | 39 #include "content/public/browser/web_contents.h" |
40 #include "content/public/browser/web_contents_observer.h" | 40 #include "content/public/browser/web_contents_observer.h" |
41 #include "content/public/common/page_importance_signals.h" | 41 #include "content/public/common/page_importance_signals.h" |
42 #include "content/public/common/renderer_preferences.h" | 42 #include "content/public/common/renderer_preferences.h" |
43 #include "content/public/common/resource_type.h" | 43 #include "content/public/common/resource_type.h" |
44 #include "content/public/common/three_d_api_types.h" | 44 #include "content/public/common/three_d_api_types.h" |
45 #include "net/base/load_states.h" | 45 #include "net/base/load_states.h" |
46 #include "net/http/http_response_headers.h" | 46 #include "net/http/http_response_headers.h" |
47 #include "third_party/WebKit/public/web/WebDragOperation.h" | 47 #include "third_party/WebKit/public/platform/WebDragOperation.h" |
48 #include "ui/base/page_transition_types.h" | 48 #include "ui/base/page_transition_types.h" |
49 #include "ui/gfx/geometry/rect_f.h" | 49 #include "ui/gfx/geometry/rect_f.h" |
50 #include "ui/gfx/geometry/size.h" | 50 #include "ui/gfx/geometry/size.h" |
51 | 51 |
52 struct ViewHostMsg_DateTimeDialogValue_Params; | 52 struct ViewHostMsg_DateTimeDialogValue_Params; |
53 | 53 |
54 namespace content { | 54 namespace content { |
55 class BrowserPluginEmbedder; | 55 class BrowserPluginEmbedder; |
56 class BrowserPluginGuest; | 56 class BrowserPluginGuest; |
57 class DateTimeChooserAndroid; | 57 class DateTimeChooserAndroid; |
(...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1385 // Adds/removes a callback called on creation of each new WebContents. | 1385 // Adds/removes a callback called on creation of each new WebContents. |
1386 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1386 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1387 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1387 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1388 | 1388 |
1389 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1389 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1390 }; | 1390 }; |
1391 | 1391 |
1392 } // namespace content | 1392 } // namespace content |
1393 | 1393 |
1394 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1394 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |