| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_VIEWS_COOKIE_PROMPT_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_COOKIE_PROMPT_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_COOKIE_PROMPT_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_COOKIE_PROMPT_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/task.h" | 10 #include "base/task.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 bool signaled_; | 107 bool signaled_; |
| 108 | 108 |
| 109 // Prompt window title. | 109 // Prompt window title. |
| 110 std::wstring title_; | 110 std::wstring title_; |
| 111 | 111 |
| 112 // A pointer to the AppModalDialog that created us. We own this. | 112 // A pointer to the AppModalDialog that created us. We own this. |
| 113 scoped_ptr<CookiePromptModalDialog> parent_; | 113 scoped_ptr<CookiePromptModalDialog> parent_; |
| 114 | 114 |
| 115 gfx::NativeWindow root_window_; | 115 gfx::NativeWindow root_window_; |
| 116 | 116 |
| 117 Profile* profile_; |
| 118 |
| 117 DISALLOW_COPY_AND_ASSIGN(CookiePromptView); | 119 DISALLOW_COPY_AND_ASSIGN(CookiePromptView); |
| 118 }; | 120 }; |
| 119 | 121 |
| 120 #endif // CHROME_BROWSER_VIEWS_COOKIE_PROMPT_VIEW_H_ | 122 #endif // CHROME_BROWSER_VIEWS_COOKIE_PROMPT_VIEW_H_ |
| 121 | |
| OLD | NEW |