| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 struct SSLStatus; | 43 struct SSLStatus; |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace gfx { | 46 namespace gfx { |
| 47 class Point; | 47 class Point; |
| 48 class Rect; | 48 class Rect; |
| 49 class Size; | 49 class Size; |
| 50 } | 50 } |
| 51 | 51 |
| 52 namespace history { | 52 namespace history { |
| 53 class HistoryAddPageArgs; | 53 struct HistoryAddPageArgs; |
| 54 } | 54 } |
| 55 | 55 |
| 56 namespace webkit_glue { | 56 namespace webkit_glue { |
| 57 struct WebIntentData; | 57 struct WebIntentData; |
| 58 struct WebIntentServiceData; | 58 struct WebIntentServiceData; |
| 59 } | 59 } |
| 60 | 60 |
| 61 namespace WebKit { | 61 namespace WebKit { |
| 62 class WebLayer; | 62 class WebLayer; |
| 63 } | 63 } |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 // Called when |this| is no longer the WebContentsDelegate for |source|. | 466 // Called when |this| is no longer the WebContentsDelegate for |source|. |
| 467 void Detach(WebContents* source); | 467 void Detach(WebContents* source); |
| 468 | 468 |
| 469 // The WebContents that this is currently a delegate for. | 469 // The WebContents that this is currently a delegate for. |
| 470 std::set<WebContents*> attached_contents_; | 470 std::set<WebContents*> attached_contents_; |
| 471 }; | 471 }; |
| 472 | 472 |
| 473 } // namespace content | 473 } // namespace content |
| 474 | 474 |
| 475 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ | 475 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ |
| OLD | NEW |