Chromium Code Reviews| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 31 namespace content { | 31 namespace content { |
| 32 class BrowserContext; | 32 class BrowserContext; |
| 33 class ColorChooser; | 33 class ColorChooser; |
| 34 class DownloadItem; | 34 class DownloadItem; |
| 35 class JavaScriptDialogCreator; | 35 class JavaScriptDialogCreator; |
| 36 class RenderViewHost; | 36 class RenderViewHost; |
| 37 class WebContents; | 37 class WebContents; |
| 38 class WebContentsImpl; | 38 class WebContentsImpl; |
| 39 class WebIntentsDispatcher; | 39 class WebIntentsDispatcher; |
| 40 struct ContextMenuParams; | 40 struct ContextMenuParams; |
| 41 struct FaviconURL; | |
|
jam
2012/11/27 01:16:31
this isn't used here?
Cait (Slow)
2012/11/28 00:11:45
Done.
| |
| 41 struct FileChooserParams; | 42 struct FileChooserParams; |
| 42 struct NativeWebKeyboardEvent; | 43 struct NativeWebKeyboardEvent; |
| 43 struct SSLStatus; | 44 struct SSLStatus; |
| 44 } | 45 } |
| 45 | 46 |
| 46 namespace gfx { | 47 namespace gfx { |
| 47 class Point; | 48 class Point; |
| 48 class Rect; | 49 class Rect; |
| 49 class Size; | 50 class Size; |
| 50 } | 51 } |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 443 // Called when |this| is no longer the WebContentsDelegate for |source|. | 444 // Called when |this| is no longer the WebContentsDelegate for |source|. |
| 444 void Detach(WebContents* source); | 445 void Detach(WebContents* source); |
| 445 | 446 |
| 446 // The WebContents that this is currently a delegate for. | 447 // The WebContents that this is currently a delegate for. |
| 447 std::set<WebContents*> attached_contents_; | 448 std::set<WebContents*> attached_contents_; |
| 448 }; | 449 }; |
| 449 | 450 |
| 450 } // namespace content | 451 } // namespace content |
| 451 | 452 |
| 452 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ | 453 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ |
| OLD | NEW |