| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_UI_WEBUI_SETTINGS_SETTINGS_COOKIES_VIEW_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_COOKIES_VIEW_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_COOKIES_VIEW_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_COOKIES_VIEW_HANDLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 void ReloadCookies(const base::ListValue* args); | 67 void ReloadCookies(const base::ListValue* args); |
| 68 | 68 |
| 69 // The Cookies Tree model | 69 // The Cookies Tree model |
| 70 std::unique_ptr<CookiesTreeModel> cookies_tree_model_; | 70 std::unique_ptr<CookiesTreeModel> cookies_tree_model_; |
| 71 | 71 |
| 72 // Flag to indicate whether there is a batch update in progress. | 72 // Flag to indicate whether there is a batch update in progress. |
| 73 bool batch_update_; | 73 bool batch_update_; |
| 74 | 74 |
| 75 std::unique_ptr<CookiesTreeModelUtil> model_util_; | 75 std::unique_ptr<CookiesTreeModelUtil> model_util_; |
| 76 | 76 |
| 77 // The callback ID for the current outstanding request. |
| 78 std::string callback_id_; |
| 79 |
| 77 DISALLOW_COPY_AND_ASSIGN(CookiesViewHandler); | 80 DISALLOW_COPY_AND_ASSIGN(CookiesViewHandler); |
| 78 }; | 81 }; |
| 79 | 82 |
| 80 } // namespace settings | 83 } // namespace settings |
| 81 | 84 |
| 82 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_COOKIES_VIEW_HANDLER_H_ | 85 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_COOKIES_VIEW_HANDLER_H_ |
| OLD | NEW |