chore: fix more chromium-style errors in windows code (#13487)
Finding more chromium-style linting errors as I build more of the windows code :)
This commit is contained in:
parent
003a92e099
commit
d6af3bfcd2
6 changed files with 23 additions and 16 deletions
|
@ -16,12 +16,8 @@ namespace util {
|
|||
|
||||
class Promise {
|
||||
public:
|
||||
explicit Promise(v8::Isolate* isolate) {
|
||||
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
||||
isolate_ = isolate;
|
||||
resolver_.Reset(isolate, v8::Promise::Resolver::New(isolate));
|
||||
}
|
||||
~Promise() {}
|
||||
explicit Promise(v8::Isolate* isolate);
|
||||
~Promise();
|
||||
|
||||
v8::Isolate* isolate() const { return isolate_; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue