chore: add ELECTRON_ prefix to C++ include guards (#31925)

This commit is contained in:
Milan Burda 2021-11-22 08:34:31 +01:00 committed by GitHub
parent 0865267387
commit c4ea33d1bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
358 changed files with 1080 additions and 1079 deletions

View file

@ -7,8 +7,8 @@
// will return NULL if the service is not available, so callers must check for
// this condition.
#ifndef SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#define SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#ifndef ELECTRON_SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#define ELECTRON_SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#include <memory>
#include <string>
@ -114,4 +114,4 @@ class BrowserProcessImpl : public BrowserProcess {
std::string locale_;
};
#endif // SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#endif // ELECTRON_SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_