| 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 CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 class BrowserContext; | 37 class BrowserContext; |
| 38 class ColorChooser; | 38 class ColorChooser; |
| 39 class WebContents; | 39 class WebContents; |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace extensions { | 42 namespace extensions { |
| 43 class Extension; | 43 class Extension; |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace gfx { | 46 namespace gfx { |
| 47 class Image; | |
| 48 class Point; | 47 class Point; |
| 49 } | 48 } |
| 50 | 49 |
| 51 namespace net { | 50 namespace net { |
| 52 class AuthChallengeInfo; | 51 class AuthChallengeInfo; |
| 53 class URLRequest; | 52 class URLRequest; |
| 54 } | 53 } |
| 55 | 54 |
| 56 namespace security_state { | 55 namespace security_state { |
| 57 struct SecurityInfo; | 56 struct SecurityInfo; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 using BubbleShowPtr = | 201 using BubbleShowPtr = |
| 203 void (*)(content::WebContents*, | 202 void (*)(content::WebContents*, |
| 204 const std::vector<arc::ArcNavigationThrottle::AppInfo>&, | 203 const std::vector<arc::ArcNavigationThrottle::AppInfo>&, |
| 205 const IntentPickerResponse&); | 204 const IntentPickerResponse&); |
| 206 | 205 |
| 207 BubbleShowPtr ShowIntentPickerBubble(); | 206 BubbleShowPtr ShowIntentPickerBubble(); |
| 208 | 207 |
| 209 #endif // OS_CHROMEOS | 208 #endif // OS_CHROMEOS |
| 210 | 209 |
| 211 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 210 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| OLD | NEW |