fix: stop using std::vector<const uint8_t> in ProcessingSingleton (#41832)

This commit is contained in:
lauren n. liberda 2024-04-15 19:32:48 +02:00 committed by GitHub
parent 2a6ad42113
commit 6aa9a003c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 15 deletions

View file

@ -196,7 +196,7 @@ class App : public ElectronBrowserClient::Delegate,
std::string GetSystemLocale(gin_helper::ErrorThrower thrower) const;
void OnSecondInstance(base::CommandLine cmd,
const base::FilePath& cwd,
const std::vector<const uint8_t> additional_data);
const std::vector<uint8_t> additional_data);
bool HasSingleInstanceLock() const;
bool RequestSingleInstanceLock(gin::Arguments* args);
void ReleaseSingleInstanceLock();