| 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> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "chrome/browser/ui/bookmarks/bookmark_editor.h" | 14 #include "chrome/browser/ui/bookmarks/bookmark_editor.h" |
| 15 #include "components/security_state/security_state_model.h" | 15 #include "components/security_state/security_state_model.h" |
| 16 #include "third_party/skia/include/core/SkColor.h" | 16 #include "third_party/skia/include/core/SkColor.h" |
| 17 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
| 18 | 18 |
| 19 #if defined(OS_CHROMEOS) | 19 #if defined(OS_CHROMEOS) |
| 20 #include "chrome/browser/chromeos/arc/arc_navigation_throttle.h" | 20 #include "chrome/browser/chromeos/arc/ui/arc_navigation_throttle.h" |
| 21 #endif // OS_CHROMEOS | 21 #endif // OS_CHROMEOS |
| 22 | 22 |
| 23 class Browser; | 23 class Browser; |
| 24 class ContentSettingBubbleModel; | 24 class ContentSettingBubbleModel; |
| 25 class GURL; | 25 class GURL; |
| 26 class LoginHandler; | 26 class LoginHandler; |
| 27 class Profile; | 27 class Profile; |
| 28 | 28 |
| 29 namespace base { | 29 namespace base { |
| 30 struct Feature; | 30 struct Feature; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 content::WebContents*, | 179 content::WebContents*, |
| 180 const std::vector<std::pair<std::basic_string<char>, gfx::Image>>&, | 180 const std::vector<std::pair<std::basic_string<char>, gfx::Image>>&, |
| 181 const base::Callback<void(size_t, | 181 const base::Callback<void(size_t, |
| 182 arc::ArcNavigationThrottle::CloseReason)>&); | 182 arc::ArcNavigationThrottle::CloseReason)>&); |
| 183 | 183 |
| 184 BubbleShowPtr ShowIntentPickerBubble(); | 184 BubbleShowPtr ShowIntentPickerBubble(); |
| 185 | 185 |
| 186 #endif // OS_CHROMEOS | 186 #endif // OS_CHROMEOS |
| 187 | 187 |
| 188 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 188 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| OLD | NEW |