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

Side by Side Diff: chrome/browser/ui/webui/interstitials/interstitial_ui.h

Issue 2090683004: Unbreak chrome://interstitials/ssl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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
« no previous file with comments | « no previous file | chrome/browser/ui/webui/interstitials/interstitial_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_WEBUI_INTERSTITIALS_INTERSTITIAL_UI_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_INTERSTITIALS_INTERSTITIAL_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_INTERSTITIALS_INTERSTITIAL_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_INTERSTITIALS_INTERSTITIAL_UI_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "content/public/browser/url_data_source.h"
12 #include "content/public/browser/web_ui_controller.h" 11 #include "content/public/browser/web_ui_controller.h"
13 12
14 class Profile;
15
16 namespace content {
17 class WebContents;
18 }
19
20 // Handler for chrome://interstitials demonstration pages. This class is not 13 // Handler for chrome://interstitials demonstration pages. This class is not
21 // used in displaying any real interstitials. 14 // used in displaying any real interstitials.
22 class InterstitialUI : public content::WebUIController { 15 class InterstitialUI : public content::WebUIController {
23 public: 16 public:
24 explicit InterstitialUI(content::WebUI* web_ui); 17 explicit InterstitialUI(content::WebUI* web_ui);
25 18
26 ~InterstitialUI() override; 19 ~InterstitialUI() override;
27 20
28 private: 21 private:
29 DISALLOW_COPY_AND_ASSIGN(InterstitialUI); 22 DISALLOW_COPY_AND_ASSIGN(InterstitialUI);
30 }; 23 };
31 24
32 #endif // CHROME_BROWSER_UI_WEBUI_INTERSTITIALS_INTERSTITIAL_UI_H_ 25 #endif // CHROME_BROWSER_UI_WEBUI_INTERSTITIALS_INTERSTITIAL_UI_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/interstitials/interstitial_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698