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
26
27
28
29
30
31
32
|
// 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.
#include "chrome/browser/cookie_modal_dialog.h"
#include "chrome/browser/views/cookie_prompt_view.h"
CookiePromptModalDialog::CookiePromptModalDialog(
TabContents* tab_contents,
const std::string& host,
const std::string& cookie_line,
CookiePromptModalDialogDelegate* delegate)
: AppModalDialog(tab_contents, std::wstring()),
host_(host),
cookie_line_(cookie_line),
cookie_ui_(true),
delegate_(delegate) {
}
CookiePromptModalDialog::CookiePromptModalDialog(
TabContents* tab_contents,
const BrowsingDataLocalStorageHelper::LocalStorageInfo& storage_info,
CookiePromptModalDialogDelegate* delegate)
: AppModalDialog(tab_contents, std::wstring()),
storage_info_(storage_info),
cookie_ui_(false),
delegate_(delegate) {
}
|