mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
tests: Format with clang-tidy (see #3632)
This commit is contained in:
@ -14,7 +14,7 @@ namespace client {
|
||||
class BytesWriteHandler : public CefWriteHandler {
|
||||
public:
|
||||
explicit BytesWriteHandler(size_t grow);
|
||||
~BytesWriteHandler();
|
||||
~BytesWriteHandler() override;
|
||||
|
||||
size_t Write(const void* ptr, size_t size, size_t n) override;
|
||||
int Seek(int64_t offset, int whence) override;
|
||||
@ -31,7 +31,7 @@ class BytesWriteHandler : public CefWriteHandler {
|
||||
size_t grow_;
|
||||
void* data_;
|
||||
int64_t datasize_;
|
||||
int64_t offset_;
|
||||
int64_t offset_ = 0;
|
||||
|
||||
base::Lock lock_;
|
||||
|
||||
|
Reference in New Issue
Block a user