| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/command_updater_delegate.h" | 10 #include "chrome/browser/command_updater_delegate.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 virtual void ButtonPressed(views::Button* sender, | 63 virtual void ButtonPressed(views::Button* sender, |
| 64 const ui::Event& event) OVERRIDE; | 64 const ui::Event& event) OVERRIDE; |
| 65 | 65 |
| 66 // Implements content::PageNavigator: | 66 // Implements content::PageNavigator: |
| 67 virtual content::WebContents* OpenURL( | 67 virtual content::WebContents* OpenURL( |
| 68 const content::OpenURLParams& params) OVERRIDE; | 68 const content::OpenURLParams& params) OVERRIDE; |
| 69 | 69 |
| 70 // Implements content::WebContentsDelegate: | 70 // Implements content::WebContentsDelegate: |
| 71 virtual void NavigationStateChanged(const content::WebContents* source, | 71 virtual void NavigationStateChanged(const content::WebContents* source, |
| 72 unsigned changed_flags) OVERRIDE; | 72 unsigned changed_flags) OVERRIDE; |
| 73 virtual void LoadingStateChanged(content::WebContents* source) OVERRIDE; | 73 virtual void LoadingStateChanged(content::WebContents* source, |
| 74 bool to_different_document) OVERRIDE; |
| 74 | 75 |
| 75 // Implements LocationBarView::Delegate: | 76 // Implements LocationBarView::Delegate: |
| 76 virtual content::WebContents* GetWebContents() OVERRIDE; | 77 virtual content::WebContents* GetWebContents() OVERRIDE; |
| 77 virtual ToolbarModel* GetToolbarModel() OVERRIDE; | 78 virtual ToolbarModel* GetToolbarModel() OVERRIDE; |
| 78 virtual const ToolbarModel* GetToolbarModel() const OVERRIDE; | 79 virtual const ToolbarModel* GetToolbarModel() const OVERRIDE; |
| 79 virtual InstantController* GetInstant() OVERRIDE; | 80 virtual InstantController* GetInstant() OVERRIDE; |
| 80 virtual views::Widget* CreateViewsBubble( | 81 virtual views::Widget* CreateViewsBubble( |
| 81 views::BubbleDelegateView* bubble_delegate) OVERRIDE; | 82 views::BubbleDelegateView* bubble_delegate) OVERRIDE; |
| 82 virtual PageActionImageView* CreatePageActionImageView( | 83 virtual PageActionImageView* CreatePageActionImageView( |
| 83 LocationBarView* owner, | 84 LocationBarView* owner, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 scoped_ptr<views::WebView> web_view_container_; | 120 scoped_ptr<views::WebView> web_view_container_; |
| 120 | 121 |
| 121 scoped_ptr<StubBubbleModelDelegate> bubble_model_delegate_; | 122 scoped_ptr<StubBubbleModelDelegate> bubble_model_delegate_; |
| 122 | 123 |
| 123 DISALLOW_COPY_AND_ASSIGN(SimpleWebViewDialog); | 124 DISALLOW_COPY_AND_ASSIGN(SimpleWebViewDialog); |
| 124 }; | 125 }; |
| 125 | 126 |
| 126 } // namespace chromeos | 127 } // namespace chromeos |
| 127 | 128 |
| 128 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ | 129 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIMPLE_WEB_VIEW_DIALOG_H_ |
| OLD | NEW |