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

Side by Side Diff: chrome/browser/ui/cocoa/website_settings_bubble_controller.h

Issue 10829452: Auto select the connection tab of the Website Settings UI in case of an https error or mixed content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add views specific parts. Created 8 years, 4 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 | Annotate | Revision Log
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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/memory/scoped_nsobject.h" 7 #include "base/memory/scoped_nsobject.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" 9 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
10 #include "chrome/browser/ui/website_settings/website_settings_ui.h" 10 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 void set_bubble_controller( 94 void set_bubble_controller(
95 WebsiteSettingsBubbleController* bubble_controller); 95 WebsiteSettingsBubbleController* bubble_controller);
96 96
97 // WebsiteSettingsUI implementations. 97 // WebsiteSettingsUI implementations.
98 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE; 98 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE;
99 virtual void SetPermissionInfo( 99 virtual void SetPermissionInfo(
100 const PermissionInfoList& permission_info_list) OVERRIDE; 100 const PermissionInfoList& permission_info_list) OVERRIDE;
101 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE; 101 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE;
102 virtual void SetFirstVisit(const string16& first_visit) OVERRIDE; 102 virtual void SetFirstVisit(const string16& first_visit) OVERRIDE;
103 virtual void SetSelectedTab(TabId tab_id) OVERRIDE;
103 104
104 private: 105 private:
105 // The Cocoa controller for the bubble UI. 106 // The Cocoa controller for the bubble UI.
106 WebsiteSettingsBubbleController* bubble_controller_; 107 WebsiteSettingsBubbleController* bubble_controller_;
107 108
108 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsUIBridge); 109 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsUIBridge);
109 }; 110 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698