| 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_SIMPLE_WEB_VIEW_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_SIMPLE_WEB_VIEW_DIALOG_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_SIMPLE_WEB_VIEW_DIALOG_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_SIMPLE_WEB_VIEW_DIALOG_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 content::WebContents* GetWebContents() override; | 78 content::WebContents* GetWebContents() override; |
| 79 ToolbarModel* GetToolbarModel() override; | 79 ToolbarModel* GetToolbarModel() override; |
| 80 const ToolbarModel* GetToolbarModel() const override; | 80 const ToolbarModel* GetToolbarModel() const override; |
| 81 PageActionImageView* CreatePageActionImageView( | 81 PageActionImageView* CreatePageActionImageView( |
| 82 LocationBarView* owner, | 82 LocationBarView* owner, |
| 83 ExtensionAction* action) override; | 83 ExtensionAction* action) override; |
| 84 ContentSettingBubbleModelDelegate* GetContentSettingBubbleModelDelegate() | 84 ContentSettingBubbleModelDelegate* GetContentSettingBubbleModelDelegate() |
| 85 override; | 85 override; |
| 86 void ShowWebsiteSettings( | 86 void ShowWebsiteSettings( |
| 87 content::WebContents* web_contents, | 87 content::WebContents* web_contents, |
| 88 const GURL& url, | 88 const GURL& virtual_url, |
| 89 const security_state::SecurityStateModel::SecurityInfo& security_info) | 89 const security_state::SecurityStateModel::SecurityInfo& security_info) |
| 90 override; | 90 override; |
| 91 | 91 |
| 92 // Implements ChromeToolbarModelDelegate: | 92 // Implements ChromeToolbarModelDelegate: |
| 93 content::WebContents* GetActiveWebContents() const override; | 93 content::WebContents* GetActiveWebContents() const override; |
| 94 | 94 |
| 95 // Implements CommandUpdaterDelegate: | 95 // Implements CommandUpdaterDelegate: |
| 96 void ExecuteCommandWithDisposition(int id, WindowOpenDisposition) override; | 96 void ExecuteCommandWithDisposition(int id, WindowOpenDisposition) override; |
| 97 | 97 |
| 98 private: | 98 private: |
| (...skipping 18 matching lines...) Expand all Loading... |
| 117 std::unique_ptr<views::WebView> web_view_container_; | 117 std::unique_ptr<views::WebView> web_view_container_; |
| 118 | 118 |
| 119 std::unique_ptr<StubBubbleModelDelegate> bubble_model_delegate_; | 119 std::unique_ptr<StubBubbleModelDelegate> bubble_model_delegate_; |
| 120 | 120 |
| 121 DISALLOW_COPY_AND_ASSIGN(SimpleWebViewDialog); | 121 DISALLOW_COPY_AND_ASSIGN(SimpleWebViewDialog); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace chromeos | 124 } // namespace chromeos |
| 125 | 125 |
| 126 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_SIMPLE_WEB_VIEW_DIALOG_H_ | 126 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_SIMPLE_WEB_VIEW_DIALOG_H_ |
| OLD | NEW |