Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Side by Side Diff: chrome/browser/ui/webui/settings/settings_cookies_view_handler.h

Issue 2248683006: Site Settings Desktop: Implement individual cookie removal and RemoveAll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698