Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |