Skip to content

Commit 591068b

Browse files
committed
fix desktop_capture_monitor style
1 parent 25c0a26 commit 591068b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/api/screen/desktop_capture_monitor.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ namespace nwapi {
3030
DesktopCaptureMonitor(int id,
3131
const base::WeakPtr<DispatcherHost>& dispatcher_host,
3232
const base::DictionaryValue& option);
33-
virtual ~DesktopCaptureMonitor() override;
34-
virtual void CallSync(const std::string& method, const base::ListValue& arguments, base::ListValue* result) override;
35-
virtual void OnSourceAdded(int index);
36-
virtual void OnSourceRemoved(int index);
37-
virtual void OnSourceMoved(int old_index, int new_index);
38-
virtual void OnSourceNameChanged(int index);
39-
virtual void OnSourceThumbnailChanged(int index);
33+
~DesktopCaptureMonitor() override;
34+
void CallSync(const std::string& method, const base::ListValue& arguments, base::ListValue* result) override;
35+
void OnSourceAdded(int index) override;
36+
void OnSourceRemoved(int index) override;
37+
void OnSourceMoved(int old_index, int new_index) override;
38+
void OnSourceNameChanged(int index) override;
39+
void OnSourceThumbnailChanged(int index) override;
4040
private:
4141
DesktopCaptureMonitor();
4242
DISALLOW_COPY_AND_ASSIGN(DesktopCaptureMonitor);
@@ -47,4 +47,4 @@ namespace nwapi {
4747
scoped_ptr<DesktopMediaList> media_list_;
4848
};
4949
} // namespace api
50-
#endif // CONTENT_NW_SRC_API_DESKTOPCAPTURE_H_
50+
#endif // CONTENT_NW_SRC_API_DESKTOPCAPTURE_H_

0 commit comments

Comments
 (0)