| OLD | NEW |
| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 const base::string16& main_text, | 472 const base::string16& main_text, |
| 473 const base::string16& sub_text) override; | 473 const base::string16& sub_text) override; |
| 474 void HideValidationMessage(content::WebContents* web_contents) override; | 474 void HideValidationMessage(content::WebContents* web_contents) override; |
| 475 void MoveValidationMessage(content::WebContents* web_contents, | 475 void MoveValidationMessage(content::WebContents* web_contents, |
| 476 const gfx::Rect& anchor_in_root_view) override; | 476 const gfx::Rect& anchor_in_root_view) override; |
| 477 bool PreHandleGestureEvent(content::WebContents* source, | 477 bool PreHandleGestureEvent(content::WebContents* source, |
| 478 const blink::WebGestureEvent& event) override; | 478 const blink::WebGestureEvent& event) override; |
| 479 bool CanDragEnter(content::WebContents* source, | 479 bool CanDragEnter(content::WebContents* source, |
| 480 const content::DropData& data, | 480 const content::DropData& data, |
| 481 blink::WebDragOperationsMask operations_allowed) override; | 481 blink::WebDragOperationsMask operations_allowed) override; |
| 482 content::SecurityStyle GetSecurityStyle( | 482 blink::WebSecurityStyle GetSecurityStyle( |
| 483 content::WebContents* web_contents, | 483 content::WebContents* web_contents, |
| 484 content::SecurityStyleExplanations* security_style_explanations) override; | 484 content::SecurityStyleExplanations* security_style_explanations) override; |
| 485 void ShowCertificateViewerInDevTools( | 485 void ShowCertificateViewerInDevTools( |
| 486 content::WebContents* web_contents, | 486 content::WebContents* web_contents, |
| 487 scoped_refptr<net::X509Certificate> certificate) override; | 487 scoped_refptr<net::X509Certificate> certificate) override; |
| 488 std::unique_ptr<content::BluetoothChooser> RunBluetoothChooser( | 488 std::unique_ptr<content::BluetoothChooser> RunBluetoothChooser( |
| 489 content::RenderFrameHost* frame, | 489 content::RenderFrameHost* frame, |
| 490 const content::BluetoothChooser::EventHandler& event_handler) override; | 490 const content::BluetoothChooser::EventHandler& event_handler) override; |
| 491 void RequestAppBannerFromDevTools( | 491 void RequestAppBannerFromDevTools( |
| 492 content::WebContents* web_contents) override; | 492 content::WebContents* web_contents) override; |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1008 // The following factory is used for chrome update coalescing. | 1008 // The following factory is used for chrome update coalescing. |
| 1009 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 1009 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
| 1010 | 1010 |
| 1011 // The following factory is used to close the frame at a later time. | 1011 // The following factory is used to close the frame at a later time. |
| 1012 base::WeakPtrFactory<Browser> weak_factory_; | 1012 base::WeakPtrFactory<Browser> weak_factory_; |
| 1013 | 1013 |
| 1014 DISALLOW_COPY_AND_ASSIGN(Browser); | 1014 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1015 }; | 1015 }; |
| 1016 | 1016 |
| 1017 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1017 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |