Use const

This commit is contained in:
Ryohei Ikegami 2017-04-13 23:26:42 +09:00
parent 9d62b196d3
commit ea6890aa5c
2 changed files with 2 additions and 2 deletions

View file

@ -655,7 +655,7 @@ void App::OnGpuProcessCrashed(base::TerminationStatus status) {
status == base::TERMINATION_STATUS_PROCESS_WAS_KILLED);
}
base::FilePath App::GetAppPath() {
base::FilePath App::GetAppPath() const {
return app_path_;
}

View file

@ -70,7 +70,7 @@ class App : public AtomBrowserClient::Delegate,
std::unique_ptr<CertificateManagerModel> model);
#endif
base::FilePath GetAppPath();
base::FilePath GetAppPath() const;
protected:
explicit App(v8::Isolate* isolate);