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

Side by Side Diff: chrome/browser/extensions/webstore_install_with_prompt.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
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_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_
6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ 6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/extensions/webstore_standalone_installer.h" 10 #include "chrome/browser/extensions/webstore_standalone_installer.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 gfx::NativeWindow parent_window, 44 gfx::NativeWindow parent_window,
45 const Callback& callback); 45 const Callback& callback);
46 46
47 protected: 47 protected:
48 friend class base::RefCountedThreadSafe<WebstoreInstallWithPrompt>; 48 friend class base::RefCountedThreadSafe<WebstoreInstallWithPrompt>;
49 virtual ~WebstoreInstallWithPrompt(); 49 virtual ~WebstoreInstallWithPrompt();
50 50
51 void set_show_post_install_ui(bool show) { show_post_install_ui_ = show; } 51 void set_show_post_install_ui(bool show) { show_post_install_ui_ = show; }
52 52
53 // extensions::WebstoreStandaloneInstaller overrides: 53 // extensions::WebstoreStandaloneInstaller overrides:
54 virtual bool CheckRequestorAlive() const OVERRIDE; 54 virtual bool CheckRequestorAlive() const override;
55 virtual const GURL& GetRequestorURL() const OVERRIDE; 55 virtual const GURL& GetRequestorURL() const override;
56 virtual bool ShouldShowPostInstallUI() const OVERRIDE; 56 virtual bool ShouldShowPostInstallUI() const override;
57 virtual bool ShouldShowAppInstalledBubble() const OVERRIDE; 57 virtual bool ShouldShowAppInstalledBubble() const override;
58 virtual content::WebContents* GetWebContents() const OVERRIDE; 58 virtual content::WebContents* GetWebContents() const override;
59 virtual scoped_refptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt() 59 virtual scoped_refptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt()
60 const OVERRIDE; 60 const override;
61 virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() OVERRIDE; 61 virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() override;
62 virtual bool CheckInlineInstallPermitted( 62 virtual bool CheckInlineInstallPermitted(
63 const base::DictionaryValue& webstore_data, 63 const base::DictionaryValue& webstore_data,
64 std::string* error) const OVERRIDE; 64 std::string* error) const override;
65 virtual bool CheckRequestorPermitted( 65 virtual bool CheckRequestorPermitted(
66 const base::DictionaryValue& webstore_data, 66 const base::DictionaryValue& webstore_data,
67 std::string* error) const OVERRIDE; 67 std::string* error) const override;
68 68
69 // content::PageNavigator overrides: 69 // content::PageNavigator overrides:
70 virtual content::WebContents* OpenURL( 70 virtual content::WebContents* OpenURL(
71 const content::OpenURLParams& params) OVERRIDE; 71 const content::OpenURLParams& params) override;
72 72
73 private: 73 private:
74 bool show_post_install_ui_; 74 bool show_post_install_ui_;
75 75
76 GURL dummy_requestor_url_; 76 GURL dummy_requestor_url_;
77 77
78 // A non-visible WebContents used to download data from the webstore. 78 // A non-visible WebContents used to download data from the webstore.
79 scoped_ptr<content::WebContents> dummy_web_contents_; 79 scoped_ptr<content::WebContents> dummy_web_contents_;
80 80
81 gfx::NativeWindow parent_window_; 81 gfx::NativeWindow parent_window_;
82 82
83 DISALLOW_COPY_AND_ASSIGN(WebstoreInstallWithPrompt); 83 DISALLOW_COPY_AND_ASSIGN(WebstoreInstallWithPrompt);
84 }; 84 };
85 85
86 } // namespace extensions 86 } // namespace extensions
87 87
88 #endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_ 88 #endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_WITH_PROMPT_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/webstore_install_helper.h ('k') | chrome/browser/extensions/webstore_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698