| 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_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #endif | 31 #endif |
| 32 | 32 |
| 33 class GURL; | 33 class GURL; |
| 34 | 34 |
| 35 namespace base { | 35 namespace base { |
| 36 class FilePath; | 36 class FilePath; |
| 37 class ListValue; | 37 class ListValue; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace content { | 40 namespace content { |
| 41 class BrowserContext; | |
| 42 class ColorChooser; | 41 class ColorChooser; |
| 43 class DownloadItem; | |
| 44 class JavaScriptDialogManager; | 42 class JavaScriptDialogManager; |
| 45 class PageState; | 43 class PageState; |
| 46 class RenderFrameHost; | 44 class RenderFrameHost; |
| 47 class SessionStorageNamespace; | 45 class SessionStorageNamespace; |
| 48 class WebContents; | 46 class WebContents; |
| 49 class WebContentsImpl; | 47 class WebContentsImpl; |
| 50 struct ColorSuggestion; | 48 struct ColorSuggestion; |
| 51 struct ContextMenuParams; | 49 struct ContextMenuParams; |
| 52 struct DropData; | 50 struct DropData; |
| 53 struct FileChooserParams; | 51 struct FileChooserParams; |
| 54 struct NativeWebKeyboardEvent; | 52 struct NativeWebKeyboardEvent; |
| 55 struct Referrer; | 53 struct Referrer; |
| 56 struct SecurityStyleExplanations; | 54 struct SecurityStyleExplanations; |
| 57 struct SSLStatus; | |
| 58 } // namespace content | 55 } // namespace content |
| 59 | 56 |
| 60 namespace gfx { | 57 namespace gfx { |
| 61 class Point; | 58 class Point; |
| 62 class Rect; | 59 class Rect; |
| 63 class Size; | 60 class Size; |
| 64 } | 61 } |
| 65 | 62 |
| 66 namespace net { | 63 namespace net { |
| 67 class X509Certificate; | 64 class X509Certificate; |
| 68 } | 65 } |
| 69 | 66 |
| 70 namespace url { | |
| 71 class Origin; | |
| 72 } | |
| 73 | |
| 74 namespace blink { | 67 namespace blink { |
| 75 class WebGestureEvent; | 68 class WebGestureEvent; |
| 76 } | 69 } |
| 77 | 70 |
| 78 namespace content { | 71 namespace content { |
| 79 class RenderWidgetHost; | 72 class RenderWidgetHost; |
| 80 | 73 |
| 81 struct OpenURLParams; | 74 struct OpenURLParams; |
| 82 struct WebContentsUnresponsiveState; | 75 struct WebContentsUnresponsiveState; |
| 83 | 76 |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 // Called when |this| is no longer the WebContentsDelegate for |source|. | 547 // Called when |this| is no longer the WebContentsDelegate for |source|. |
| 555 void Detach(WebContents* source); | 548 void Detach(WebContents* source); |
| 556 | 549 |
| 557 // The WebContents that this is currently a delegate for. | 550 // The WebContents that this is currently a delegate for. |
| 558 std::set<WebContents*> attached_contents_; | 551 std::set<WebContents*> attached_contents_; |
| 559 }; | 552 }; |
| 560 | 553 |
| 561 } // namespace content | 554 } // namespace content |
| 562 | 555 |
| 563 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ | 556 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ |
| OLD | NEW |