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

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

Issue 1589703002: Surface SCT (Signed Certificate Timestamp) counts in the Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
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 #ifndef CHROME_BROWSER_UI_BROWSER_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_
6 #define CHROME_BROWSER_UI_BROWSER_H_ 6 #define CHROME_BROWSER_UI_BROWSER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 const blink::WebGestureEvent& event) override; 462 const blink::WebGestureEvent& event) override;
463 bool CanDragEnter(content::WebContents* source, 463 bool CanDragEnter(content::WebContents* source,
464 const content::DropData& data, 464 const content::DropData& data,
465 blink::WebDragOperationsMask operations_allowed) override; 465 blink::WebDragOperationsMask operations_allowed) override;
466 content::SecurityStyle GetSecurityStyle( 466 content::SecurityStyle GetSecurityStyle(
467 content::WebContents* web_contents, 467 content::WebContents* web_contents,
468 content::SecurityStyleExplanations* security_style_explanations) override; 468 content::SecurityStyleExplanations* security_style_explanations) override;
469 void ShowCertificateViewerInDevTools( 469 void ShowCertificateViewerInDevTools(
470 content::WebContents* web_contents, 470 content::WebContents* web_contents,
471 int cert_id) override; 471 int cert_id) override;
472 void GetCertificateTransparencySummary(bool is_valid_ev,
473 int num_unknown_scts,
474 int num_invalid_scts,
475 int num_valid_scts,
476 std::string* summary) override;
472 scoped_ptr<content::BluetoothChooser> RunBluetoothChooser( 477 scoped_ptr<content::BluetoothChooser> RunBluetoothChooser(
473 content::WebContents* web_contents, 478 content::WebContents* web_contents,
474 const content::BluetoothChooser::EventHandler& event_handler, 479 const content::BluetoothChooser::EventHandler& event_handler,
475 const GURL& origin) override; 480 const GURL& origin) override;
476 481
477 bool is_type_tabbed() const { return type_ == TYPE_TABBED; } 482 bool is_type_tabbed() const { return type_ == TYPE_TABBED; }
478 bool is_type_popup() const { return type_ == TYPE_POPUP; } 483 bool is_type_popup() const { return type_ == TYPE_POPUP; }
479 484
480 bool is_app() const; 485 bool is_app() const;
481 bool is_devtools() const; 486 bool is_devtools() const;
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 // The following factory is used for chrome update coalescing. 999 // The following factory is used for chrome update coalescing.
995 base::WeakPtrFactory<Browser> chrome_updater_factory_; 1000 base::WeakPtrFactory<Browser> chrome_updater_factory_;
996 1001
997 // The following factory is used to close the frame at a later time. 1002 // The following factory is used to close the frame at a later time.
998 base::WeakPtrFactory<Browser> weak_factory_; 1003 base::WeakPtrFactory<Browser> weak_factory_;
999 1004
1000 DISALLOW_COPY_AND_ASSIGN(Browser); 1005 DISALLOW_COPY_AND_ASSIGN(Browser);
1001 }; 1006 };
1002 1007
1003 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1008 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698