Use const
This commit is contained in:
parent
9d62b196d3
commit
ea6890aa5c
2 changed files with 2 additions and 2 deletions
|
@ -655,7 +655,7 @@ void App::OnGpuProcessCrashed(base::TerminationStatus status) {
|
||||||
status == base::TERMINATION_STATUS_PROCESS_WAS_KILLED);
|
status == base::TERMINATION_STATUS_PROCESS_WAS_KILLED);
|
||||||
}
|
}
|
||||||
|
|
||||||
base::FilePath App::GetAppPath() {
|
base::FilePath App::GetAppPath() const {
|
||||||
return app_path_;
|
return app_path_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ class App : public AtomBrowserClient::Delegate,
|
||||||
std::unique_ptr<CertificateManagerModel> model);
|
std::unique_ptr<CertificateManagerModel> model);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
base::FilePath GetAppPath();
|
base::FilePath GetAppPath() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit App(v8::Isolate* isolate);
|
explicit App(v8::Isolate* isolate);
|
||||||
|
|
Loading…
Reference in a new issue