OVERRIDE => override in atom_api_app.h
This commit is contained in:
parent
651dabf47e
commit
ba4f502b1e
1 changed files with 12 additions and 13 deletions
|
@ -33,20 +33,19 @@ class App : public mate::EventEmitter,
|
||||||
App();
|
App();
|
||||||
virtual ~App();
|
virtual ~App();
|
||||||
|
|
||||||
// BrowserObserver implementations:
|
// BrowserObserver:
|
||||||
virtual void OnWillQuit(bool* prevent_default) OVERRIDE;
|
void OnWillQuit(bool* prevent_default) override;
|
||||||
virtual void OnWindowAllClosed() OVERRIDE;
|
void OnWindowAllClosed() override;
|
||||||
virtual void OnQuit() OVERRIDE;
|
void OnQuit() override;
|
||||||
virtual void OnOpenFile(bool* prevent_default,
|
void OnOpenFile(bool* prevent_default, const std::string& file_path) override;
|
||||||
const std::string& file_path) OVERRIDE;
|
void OnOpenURL(const std::string& url) override;
|
||||||
virtual void OnOpenURL(const std::string& url) OVERRIDE;
|
void OnActivateWithNoOpenWindows() override;
|
||||||
virtual void OnActivateWithNoOpenWindows() OVERRIDE;
|
void OnWillFinishLaunching() override;
|
||||||
virtual void OnWillFinishLaunching() OVERRIDE;
|
void OnFinishLaunching() override;
|
||||||
virtual void OnFinishLaunching() OVERRIDE;
|
|
||||||
|
|
||||||
// mate::Wrappable implementations:
|
// mate::Wrappable:
|
||||||
virtual mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
||||||
v8::Isolate* isolate);
|
v8::Isolate* isolate) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
base::FilePath GetDataPath();
|
base::FilePath GetDataPath();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue