Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(643)

Side by Side Diff: chrome/browser/chromeos/choose_mobile_network_dialog.h

Issue 9382037: Move ContextMenuParams struct from webkit/glue to content/public/common. The reasons are: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_CHOOSE_MOBILE_NETWORK_DIALOG_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CHOOSE_MOBILE_NETWORK_DIALOG_H_
6 #define CHROME_BROWSER_CHROMEOS_CHOOSE_MOBILE_NETWORK_DIALOG_H_ 6 #define CHROME_BROWSER_CHROMEOS_CHOOSE_MOBILE_NETWORK_DIALOG_H_
7 7
8 #include "chrome/browser/ui/webui/html_dialog_ui.h" 8 #include "chrome/browser/ui/webui/html_dialog_ui.h"
9 #include "ui/gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
10 10
(...skipping 13 matching lines...) Expand all
24 virtual string16 GetDialogTitle() const OVERRIDE; 24 virtual string16 GetDialogTitle() const OVERRIDE;
25 virtual GURL GetDialogContentURL() const OVERRIDE; 25 virtual GURL GetDialogContentURL() const OVERRIDE;
26 virtual void GetWebUIMessageHandlers( 26 virtual void GetWebUIMessageHandlers(
27 std::vector<content::WebUIMessageHandler*>* handlers) const OVERRIDE; 27 std::vector<content::WebUIMessageHandler*>* handlers) const OVERRIDE;
28 virtual void GetDialogSize(gfx::Size* size) const OVERRIDE; 28 virtual void GetDialogSize(gfx::Size* size) const OVERRIDE;
29 virtual std::string GetDialogArgs() const OVERRIDE; 29 virtual std::string GetDialogArgs() const OVERRIDE;
30 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE; 30 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
31 virtual void OnCloseContents( 31 virtual void OnCloseContents(
32 content::WebContents* source, bool* out_close_dialog) OVERRIDE; 32 content::WebContents* source, bool* out_close_dialog) OVERRIDE;
33 virtual bool ShouldShowDialogTitle() const OVERRIDE; 33 virtual bool ShouldShowDialogTitle() const OVERRIDE;
34 virtual bool HandleContextMenu(const ContextMenuParams& params) OVERRIDE; 34 virtual bool HandleContextMenu(
35 const content::ContextMenuParams& params) OVERRIDE;
35 36
36 DISALLOW_COPY_AND_ASSIGN(ChooseMobileNetworkDialog); 37 DISALLOW_COPY_AND_ASSIGN(ChooseMobileNetworkDialog);
37 }; 38 };
38 39
39 } // namespace chromeos 40 } // namespace chromeos
40 41
41 #endif // CHROME_BROWSER_CHROMEOS_CHOOSE_MOBILE_NETWORK_DIALOG_H_ 42 #endif // CHROME_BROWSER_CHROMEOS_CHOOSE_MOBILE_NETWORK_DIALOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698