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

Side by Side Diff: chrome/browser/ui/cocoa/subresource_filter/subresource_filter_bubble_controller.h

Issue 2826233002: [subresource_filter] Mac UI updated and xib replaced with code based layout. (Closed)
Patch Set: Initial patch Created 3 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
Robert Sesek 2017/05/02 21:51:47 2017
shivanisha 2017/05/03 18:10:36 done in both new files.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_COCOA_SUBRESOURCE_FILTER_SUBRESOURCE_FILTER_BUBBLE_CON TROLLER_H_
6 #define CHROME_BROWSER_UI_COCOA_SUBRESOURCE_FILTER_SUBRESOURCE_FILTER_BUBBLE_CON TROLLER_H_
7
8 #import <Cocoa/Cocoa.h>
9
10 #include <memory>
Robert Sesek 2017/05/02 21:51:47 Unused
shivanisha 2017/05/03 18:10:36 removed
11
12 #include "base/mac/scoped_nsobject.h"
Robert Sesek 2017/05/02 21:51:47 Unused.
shivanisha 2017/05/03 18:10:35 removed
13
14 @class ContentSettingBubbleController;
15
16 // Displays the content filtering bubble. This is a bubble which is shown
17 // through content settings when the user proceeds through a Safe Browsing
18 // warning interstitial that is displayed when the site ahead contains deceptive
19 // embedded content. It explains to the user that some subresources were
20 // filtered and presents the checkbox to enable those resources. If the check
21 // box is checked, the OK button's text is replaced with Reload giving the user
22 // the ability to reload the page with the content we've blocked previously.
23 @interface SubresourceFilterBubbleController : ContentSettingBubbleController {
24 }
25
26 @end
27
28 #endif // CHROME_BROWSER_UI_COCOA_SUBRESOURCE_FILTER_SUBRESOURCE_FILTER_BUBBLE_ CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698