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

Side by Side Diff: chrome/browser/safe_browsing/srt_chrome_prompt_impl.cc

Issue 2813253002: Replace elevation required bool with an enum. (Closed)
Patch Set: Created 3 years, 8 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #include "chrome/browser/safe_browsing/srt_chrome_prompt_impl.h" 5 #include "chrome/browser/safe_browsing/srt_chrome_prompt_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace safe_browsing { 9 namespace safe_browsing {
10 10
11 using chrome_cleaner::mojom::ChromePrompt; 11 using chrome_cleaner::mojom::ChromePrompt;
12 using chrome_cleaner::mojom::ChromePromptRequest; 12 using chrome_cleaner::mojom::ChromePromptRequest;
13 using chrome_cleaner::mojom::ElevationStatus;
13 using chrome_cleaner::mojom::PromptAcceptance; 14 using chrome_cleaner::mojom::PromptAcceptance;
14 using chrome_cleaner::mojom::UwSPtr; 15 using chrome_cleaner::mojom::UwSPtr;
15 16
16 ChromePromptImpl::ChromePromptImpl(ChromePromptRequest request) 17 ChromePromptImpl::ChromePromptImpl(ChromePromptRequest request)
17 : binding_(this, std::move(request)) {} 18 : binding_(this, std::move(request)) {}
18 19
19 ChromePromptImpl::~ChromePromptImpl() {} 20 ChromePromptImpl::~ChromePromptImpl() {}
20 21
21 void ChromePromptImpl::PromptUser( 22 void ChromePromptImpl::PromptUser(
22 std::vector<UwSPtr> removable_uws_found, 23 std::vector<UwSPtr> removable_uws_found,
23 bool elevation_required, 24 ElevationStatus elevation_status,
24 const ChromePrompt::PromptUserCallback& callback) { 25 const ChromePrompt::PromptUserCallback& callback) {
25 // Placeholder. The actual implementation will show the prompt dialog to the 26 // Placeholder. The actual implementation will show the prompt dialog to the
26 // user and invoke this callback depending on the user's response. 27 // user and invoke this callback depending on the user's response.
27 callback.Run(PromptAcceptance::DENIED); 28 callback.Run(PromptAcceptance::DENIED);
28 } 29 }
29 30
30 } // namespace safe_browsing 31 } // namespace safe_browsing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698