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

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: " 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 85
86 void set_bubble_controller( 86 void set_bubble_controller(
87 WebsiteSettingsBubbleController* bubble_controller); 87 WebsiteSettingsBubbleController* bubble_controller);
88 88
89 // WebsiteSettingsUI implementations. 89 // WebsiteSettingsUI implementations.
90 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE; 90 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE;
91 virtual void SetPermissionInfo( 91 virtual void SetPermissionInfo(
92 const PermissionInfoList& permission_info_list) OVERRIDE; 92 const PermissionInfoList& permission_info_list) OVERRIDE;
93 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE; 93 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE;
94 virtual void SetFirstVisit(const string16& first_visit) OVERRIDE; 94 virtual void SetFirstVisit(const string16& first_visit) OVERRIDE;
95 virtual void SetSelectedTab(TabId tab_id) OVERRIDE;
95 96
96 private: 97 private:
97 // The Cocoa controller for the bubble UI. 98 // The Cocoa controller for the bubble UI.
98 WebsiteSettingsBubbleController* bubble_controller_; 99 WebsiteSettingsBubbleController* bubble_controller_;
99 100
100 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsUIBridge); 101 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsUIBridge);
101 }; 102 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698