electron/atom/browser/api/atom_api_web_request.h

49 lines
1.2 KiB
C
Raw Normal View History

2015-12-01 04:52:22 +00:00
// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_WEB_REQUEST_H_
#define ATOM_BROWSER_API_ATOM_API_WEB_REQUEST_H_
#include <string>
2015-12-03 22:24:26 +00:00
#include "atom/browser/api/trackable_object.h"
2015-12-01 04:52:22 +00:00
#include "atom/browser/net/atom_network_delegate.h"
#include "base/callback.h"
#include "native_mate/arguments.h"
2015-12-03 22:24:26 +00:00
#include "native_mate/handle.h"
2015-12-01 04:52:22 +00:00
namespace atom {
class AtomBrowserContext;
namespace api {
2015-12-03 22:24:26 +00:00
class WebRequest : public mate::TrackableObject<WebRequest> {
2015-12-01 04:52:22 +00:00
public:
static mate::Handle<WebRequest> Create(v8::Isolate* isolate,
AtomBrowserContext* browser_context);
// mate::TrackableObject:
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::ObjectTemplate> prototype);
protected:
explicit WebRequest(AtomBrowserContext* browser_context);
~WebRequest();
template<AtomNetworkDelegate::EventTypes Event>
void SetListener(mate::Arguments* args);
private:
scoped_refptr<AtomBrowserContext> browser_context_;
DISALLOW_COPY_AND_ASSIGN(WebRequest);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_WEB_REQUEST_H_