refactor: replace deprecated DISALLOW_COPY_AND_ASSIGN (#31633)

This commit is contained in:
Milan Burda 2021-11-03 12:41:45 +01:00 committed by GitHub
parent 2a2a1a834c
commit 65a980c673
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
231 changed files with 918 additions and 576 deletions

View file

@ -7,7 +7,6 @@
#include <vector>
#include "base/macros.h"
#include "content/public/browser/speech_recognition_event_listener.h"
#include "content/public/browser/speech_recognition_manager_delegate.h"
@ -20,6 +19,12 @@ class ElectronSpeechRecognitionManagerDelegate
ElectronSpeechRecognitionManagerDelegate();
~ElectronSpeechRecognitionManagerDelegate() override;
// disable copy
ElectronSpeechRecognitionManagerDelegate(
const ElectronSpeechRecognitionManagerDelegate&) = delete;
ElectronSpeechRecognitionManagerDelegate& operator=(
const ElectronSpeechRecognitionManagerDelegate&) = delete;
// content::SpeechRecognitionEventListener:
void OnRecognitionStart(int session_id) override;
void OnAudioStart(int session_id) override;
@ -45,9 +50,6 @@ class ElectronSpeechRecognitionManagerDelegate
override;
content::SpeechRecognitionEventListener* GetEventListener() override;
bool FilterProfanities(int render_process_id) override;
private:
DISALLOW_COPY_AND_ASSIGN(ElectronSpeechRecognitionManagerDelegate);
};
} // namespace electron