| 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_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // Implements content::PageNavigator: | 65 // Implements content::PageNavigator: |
| 66 virtual content::WebContents* OpenURL( | 66 virtual content::WebContents* OpenURL( |
| 67 const content::OpenURLParams& params) OVERRIDE; | 67 const content::OpenURLParams& params) OVERRIDE; |
| 68 | 68 |
| 69 // Implements content::WebContentsDelegate: | 69 // Implements content::WebContentsDelegate: |
| 70 virtual void LoadingStateChanged(content::WebContents* source) OVERRIDE; | 70 virtual void LoadingStateChanged(content::WebContents* source) OVERRIDE; |
| 71 | 71 |
| 72 // Implements LocationBarView::Delegate: | 72 // Implements LocationBarView::Delegate: |
| 73 virtual void NavigationStateChanged(const content::WebContents* source, | 73 virtual void NavigationStateChanged(const content::WebContents* source, |
| 74 unsigned changed_flags) OVERRIDE; | 74 unsigned changed_flags) OVERRIDE; |
| 75 virtual TabContentsWrapper* GetTabContentsWrapper() const OVERRIDE; | 75 virtual TabContents* GetTabContents() const OVERRIDE; |
| 76 virtual InstantController* GetInstant() OVERRIDE; | 76 virtual InstantController* GetInstant() OVERRIDE; |
| 77 virtual views::Widget* CreateViewsBubble( | 77 virtual views::Widget* CreateViewsBubble( |
| 78 views::BubbleDelegateView* bubble_delegate) OVERRIDE; | 78 views::BubbleDelegateView* bubble_delegate) OVERRIDE; |
| 79 virtual PageActionImageView* CreatePageActionImageView( | 79 virtual PageActionImageView* CreatePageActionImageView( |
| 80 LocationBarView* owner, | 80 LocationBarView* owner, |
| 81 ExtensionAction* action) OVERRIDE; | 81 ExtensionAction* action) OVERRIDE; |
| 82 virtual ContentSettingBubbleModelDelegate* | 82 virtual ContentSettingBubbleModelDelegate* |
| 83 GetContentSettingBubbleModelDelegate() OVERRIDE; | 83 GetContentSettingBubbleModelDelegate() OVERRIDE; |
| 84 virtual void ShowPageInfo(content::WebContents* web_contents, | 84 virtual void ShowPageInfo(content::WebContents* web_contents, |
| 85 const GURL& url, | 85 const GURL& url, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 scoped_ptr<views::WebView> web_view_container_; | 117 scoped_ptr<views::WebView> web_view_container_; |
| 118 | 118 |
| 119 scoped_ptr<StubBubbleModelDelegate> bubble_model_delegate_; | 119 scoped_ptr<StubBubbleModelDelegate> bubble_model_delegate_; |
| 120 | 120 |
| 121 DISALLOW_COPY_AND_ASSIGN(SimpleWebViewDialog); | 121 DISALLOW_COPY_AND_ASSIGN(SimpleWebViewDialog); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // chromeos | 124 } // chromeos |
| 125 | 125 |
| 126 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ | 126 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ |
| OLD | NEW |