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

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

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: refactor -> SecurityStateTabHelper. 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/core/security_state_model.h"
estark 2016/11/02 05:22:02 same here
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/intent_helper/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;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 using BubbleShowPtr = 199 using BubbleShowPtr =
200 void (*)(content::WebContents*, 200 void (*)(content::WebContents*,
201 const std::vector<arc::ArcNavigationThrottle::AppInfo>&, 201 const std::vector<arc::ArcNavigationThrottle::AppInfo>&,
202 const IntentPickerResponse&); 202 const IntentPickerResponse&);
203 203
204 BubbleShowPtr ShowIntentPickerBubble(); 204 BubbleShowPtr ShowIntentPickerBubble();
205 205
206 #endif // OS_CHROMEOS 206 #endif // OS_CHROMEOS
207 207
208 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ 208 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698