mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 102269.
- Disable use of clang on Mac for the time being. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@292 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2011 The Chromium Embedded Framework Authors.
|
||||
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
||||
// Portions copyright (c) 2010 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
@@ -31,16 +31,20 @@ class BrowserPersistentCookieStore
|
||||
explicit BrowserPersistentCookieStore(const FilePath& path);
|
||||
virtual ~BrowserPersistentCookieStore();
|
||||
|
||||
virtual bool Load(std::vector<net::CookieMonster::CanonicalCookie*>* cookies);
|
||||
virtual bool Load(const LoadedCallback& loaded_callback) OVERRIDE;
|
||||
|
||||
virtual void AddCookie(
|
||||
const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
|
||||
|
||||
virtual void AddCookie(const net::CookieMonster::CanonicalCookie& cc);
|
||||
virtual void UpdateCookieAccessTime(
|
||||
const net::CookieMonster::CanonicalCookie& cc);
|
||||
virtual void DeleteCookie(const net::CookieMonster::CanonicalCookie& cc);
|
||||
const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
|
||||
|
||||
virtual void SetClearLocalStateOnExit(bool clear_local_state);
|
||||
virtual void DeleteCookie(
|
||||
const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
|
||||
|
||||
virtual void Flush(Task* completion_task);
|
||||
virtual void SetClearLocalStateOnExit(bool clear_local_state) OVERRIDE;
|
||||
|
||||
virtual void Flush(Task* completion_task) OVERRIDE;
|
||||
|
||||
private:
|
||||
class Backend;
|
||||
|
Reference in New Issue
Block a user