d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
74 lines
2 KiB
C++
74 lines
2 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 <memory>
|
|
#include <string>
|
|
|
|
#include "atom/browser/api/trackable_object.h"
|
|
#include "atom/browser/net/cookie_details.h"
|
|
#include "base/callback_list.h"
|
|
#include "native_mate/handle.h"
|
|
#include "net/cookies/canonical_cookie.h"
|
|
|
|
namespace base {
|
|
class DictionaryValue;
|
|
}
|
|
|
|
namespace net {
|
|
class URLRequestContextGetter;
|
|
}
|
|
|
|
namespace atom {
|
|
|
|
class AtomBrowserContext;
|
|
|
|
namespace api {
|
|
|
|
class Cookies : public mate::TrackableObject<Cookies> {
|
|
public:
|
|
enum Error {
|
|
SUCCESS,
|
|
FAILED,
|
|
};
|
|
|
|
using GetCallback = base::Callback<void(Error, const net::CookieList&)>;
|
|
using SetCallback = base::Callback<void(Error)>;
|
|
|
|
static mate::Handle<Cookies> Create(v8::Isolate* isolate,
|
|
AtomBrowserContext* browser_context);
|
|
|
|
// mate::TrackableObject:
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
|
|
|
protected:
|
|
Cookies(v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
|
~Cookies() override;
|
|
|
|
void Get(const base::DictionaryValue& filter, const GetCallback& callback);
|
|
void Remove(const GURL& url,
|
|
const std::string& name,
|
|
const base::Closure& callback);
|
|
void Set(const base::DictionaryValue& details, const SetCallback& callback);
|
|
void FlushStore(const base::Closure& callback);
|
|
|
|
// AtomBrowserContext::RegisterCookieChangeCallback subscription:
|
|
void OnCookieChanged(const CookieDetails*);
|
|
|
|
private:
|
|
std::unique_ptr<base::CallbackList<void(const CookieDetails*)>::Subscription>
|
|
cookie_change_subscription_;
|
|
scoped_refptr<AtomBrowserContext> browser_context_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Cookies);
|
|
};
|
|
|
|
} // namespace api
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_COOKIES_H_
|