summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cookie_prompt_modal_dialog_delegate.h
blob: 3708c0599b1c70916ef7e22fcc2a4d3a85c79cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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.

#ifndef CHROME_BROWSER_COOKIE_PROMPT_MODAL_DIALOG_DELEGATE_H_
#define CHROME_BROWSER_COOKIE_PROMPT_MODAL_DIALOG_DELEGATE_H_

// Delegate for handling modal dialog results from CookiePromptModalDialog.
// The implementer of this MUST guarentee that from the time it's passed to the
// CookieModalDialog until one of these methods are called it will not be
// deleted.
class CookiePromptModalDialogDelegate {
 public:
  // Allow site data to be set.
  virtual void AllowSiteData(bool session_expire) = 0;

  // Block site data from being stored.
  virtual void BlockSiteData() = 0;

 protected:
  virtual ~CookiePromptModalDialogDelegate() {}
};

#endif  // CHROME_BROWSER_COOKIE_PROMPT_MODAL_DIALOG_DELEGATE_H_