57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
|
// 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_COOKIES_H_
|
||
|
#define ATOM_BROWSER_API_ATOM_API_COOKIES_H_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "base/callback.h"
|
||
|
#include "base/values.h"
|
||
|
#include "native_mate/wrappable.h"
|
||
|
#include "native_mate/handle.h"
|
||
|
#include "native_mate/dictionary.h"
|
||
|
|
||
|
#include "net/cookies/canonical_cookie.h"
|
||
|
|
||
|
namespace atom {
|
||
|
|
||
|
namespace api {
|
||
|
|
||
|
class Cookies : public mate::Wrappable {
|
||
|
public:
|
||
|
// node.js style callback function(error, result)
|
||
|
typedef base::Callback<void(v8::Local<v8::Value>, v8::Local<v8::Value>)>
|
||
|
GetCookiesCallback;
|
||
|
|
||
|
static mate::Handle<Cookies> Create(v8::Isolate* isolate);
|
||
|
|
||
|
protected:
|
||
|
Cookies();
|
||
|
~Cookies();
|
||
|
|
||
|
void Get(const base::DictionaryValue& options,
|
||
|
const GetCookiesCallback& callback);
|
||
|
|
||
|
void GetCookiesOnIOThread(const base::DictionaryValue* filter,
|
||
|
const GetCookiesCallback& callback);
|
||
|
|
||
|
void OnGetCookies(const base::DictionaryValue* filter,
|
||
|
const GetCookiesCallback& callback,
|
||
|
const net::CookieList& cookie_list);
|
||
|
|
||
|
// mate::Wrappable implementations:
|
||
|
mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
||
|
v8::Isolate* isolate) override;
|
||
|
|
||
|
private:
|
||
|
DISALLOW_COPY_AND_ASSIGN(Cookies);
|
||
|
};
|
||
|
|
||
|
} // namespace api
|
||
|
|
||
|
} // namespace atom
|
||
|
|
||
|
#endif // ATOM_BROWSER_API_ATOM_API_COOKIES_H_
|