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 UI_WEB_DIALOGS_TEST_TEST_WEB_DIALOG_DELEGATE_H_ | 5 #ifndef UI_WEB_DIALOGS_TEST_TEST_WEB_DIALOG_DELEGATE_H_ |
6 #define UI_WEB_DIALOGS_TEST_TEST_WEB_DIALOG_DELEGATE_H_ | 6 #define UI_WEB_DIALOGS_TEST_TEST_WEB_DIALOG_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "ui/gfx/size.h" | 11 #include "ui/gfx/size.h" |
12 #include "ui/web_dialogs/web_dialog_delegate.h" | 12 #include "ui/web_dialogs/web_dialog_delegate.h" |
13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
14 | 14 |
15 namespace ui { | 15 namespace ui { |
16 namespace test { | 16 namespace test { |
17 | 17 |
18 class TestWebDialogDelegate : public WebDialogDelegate { | 18 class TestWebDialogDelegate : public WebDialogDelegate { |
19 public: | 19 public: |
20 explicit TestWebDialogDelegate(const GURL& url); | 20 explicit TestWebDialogDelegate(const GURL& url); |
21 virtual ~TestWebDialogDelegate(); | 21 virtual ~TestWebDialogDelegate(); |
22 | 22 |
23 void set_size(int width, int height) { | 23 void set_size(int width, int height) { |
24 size_.SetSize(width, height); | 24 size_.SetSize(width, height); |
25 } | 25 } |
26 | 26 |
27 // WebDialogDelegate implementation: | 27 // WebDialogDelegate implementation: |
28 virtual ModalType GetDialogModalType() const OVERRIDE; | 28 virtual ModalType GetDialogModalType() const override; |
29 virtual base::string16 GetDialogTitle() const OVERRIDE; | 29 virtual base::string16 GetDialogTitle() const override; |
30 virtual GURL GetDialogContentURL() const OVERRIDE; | 30 virtual GURL GetDialogContentURL() const override; |
31 virtual void GetWebUIMessageHandlers( | 31 virtual void GetWebUIMessageHandlers( |
32 std::vector<content::WebUIMessageHandler*>* handlers) const OVERRIDE; | 32 std::vector<content::WebUIMessageHandler*>* handlers) const override; |
33 virtual void GetDialogSize(gfx::Size* size) const OVERRIDE; | 33 virtual void GetDialogSize(gfx::Size* size) const override; |
34 virtual std::string GetDialogArgs() const OVERRIDE; | 34 virtual std::string GetDialogArgs() const override; |
35 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE; | 35 virtual void OnDialogClosed(const std::string& json_retval) override; |
36 virtual void OnCloseContents(content::WebContents* source, | 36 virtual void OnCloseContents(content::WebContents* source, |
37 bool* out_close_dialog) OVERRIDE; | 37 bool* out_close_dialog) override; |
38 virtual bool ShouldShowDialogTitle() const OVERRIDE; | 38 virtual bool ShouldShowDialogTitle() const override; |
39 | 39 |
40 protected: | 40 protected: |
41 const GURL url_; | 41 const GURL url_; |
42 gfx::Size size_; | 42 gfx::Size size_; |
43 | 43 |
44 DISALLOW_COPY_AND_ASSIGN(TestWebDialogDelegate); | 44 DISALLOW_COPY_AND_ASSIGN(TestWebDialogDelegate); |
45 }; | 45 }; |
46 | 46 |
47 } // namespace test | 47 } // namespace test |
48 } // namespace ui | 48 } // namespace ui |
49 | 49 |
50 #endif // UI_WEB_DIALOGS_TEST_TEST_WEB_DIALOG_DELEGATE_H_ | 50 #endif // UI_WEB_DIALOGS_TEST_TEST_WEB_DIALOG_DELEGATE_H_ |
OLD | NEW |