| OLD | NEW |
| 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/mac/scoped_nsobject.h" | 9 #include "base/mac/scoped_nsobject.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | 11 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
| 12 #include "chrome/browser/ui/website_settings/website_settings_ui.h" | 12 #include "chrome/browser/ui/website_settings/website_settings_ui.h" |
| 13 #include "components/security_state/security_state_model.h" | 13 #include "components/security_state/core/security_state_model.h" |
| 14 #include "content/public/browser/web_contents_observer.h" | 14 #include "content/public/browser/web_contents_observer.h" |
| 15 | 15 |
| 16 class WebsiteSettingsUIBridge; | 16 class WebsiteSettingsUIBridge; |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 class WebContents; | 19 class WebContents; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace net { | 22 namespace net { |
| 23 class X509Certificate; | 23 class X509Certificate; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 149 |
| 150 private: | 150 private: |
| 151 // The WebContents the bubble UI is attached to. | 151 // The WebContents the bubble UI is attached to. |
| 152 content::WebContents* web_contents_; | 152 content::WebContents* web_contents_; |
| 153 | 153 |
| 154 // The Cocoa controller for the bubble UI. | 154 // The Cocoa controller for the bubble UI. |
| 155 WebsiteSettingsBubbleController* bubble_controller_; | 155 WebsiteSettingsBubbleController* bubble_controller_; |
| 156 | 156 |
| 157 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsUIBridge); | 157 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsUIBridge); |
| 158 }; | 158 }; |
| OLD | NEW |