Implement cookies.get API.
This commit is contained in:
parent
db2042f561
commit
dbbc2f19f4
5 changed files with 272 additions and 0 deletions
56
atom/browser/api/atom_api_cookies.h
Normal file
56
atom/browser/api/atom_api_cookies.h
Normal file
|
@ -0,0 +1,56 @@
|
|||
// 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_
|
Loading…
Add table
Add a link
Reference in a new issue