Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: chrome/browser/ui/browser_dialogs.h

Issue 2441563002: arc: Create intermediate directories in c/b/c/arc (Closed)
Patch Set: Re-rebase to ToT Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/intent_helper/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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 using BubbleShowPtr = 187 using BubbleShowPtr =
188 void (*)(content::WebContents*, 188 void (*)(content::WebContents*,
189 const std::vector<arc::ArcNavigationThrottle::AppInfo>&, 189 const std::vector<arc::ArcNavigationThrottle::AppInfo>&,
190 const IntentPickerResponse&); 190 const IntentPickerResponse&);
191 191
192 BubbleShowPtr ShowIntentPickerBubble(); 192 BubbleShowPtr ShowIntentPickerBubble();
193 193
194 #endif // OS_CHROMEOS 194 #endif // OS_CHROMEOS
195 195
196 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ 196 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698