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

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

Issue 2846333003: Chrome cleaner: move Chrome Cleaner files to their own directory (Closed)
Patch Set: Created 3 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SAFE_BROWSING_SRT_CHROME_PROMPT_IMPL_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_SRT_CHROME_PROMPT_IMPL_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "components/chrome_cleaner/public/interfaces/chrome_prompt.mojom.h"
11 #include "mojo/public/cpp/bindings/binding.h"
12
13 namespace safe_browsing {
14
15 // Implementation of the ChromePrompt Mojo interface.
16 class ChromePromptImpl : public chrome_cleaner::mojom::ChromePrompt {
17 public:
18 ChromePromptImpl(chrome_cleaner::mojom::ChromePromptRequest request,
19 base::Closure on_connection_closed);
20 ~ChromePromptImpl() override;
21
22 void PromptUser(
23 std::vector<chrome_cleaner::mojom::UwSPtr> removable_uws_found,
24 chrome_cleaner::mojom::ElevationStatus elevation_status,
25 const chrome_cleaner::mojom::ChromePrompt::PromptUserCallback& callback)
26 override;
27
28 private:
29 mojo::Binding<chrome_cleaner::mojom::ChromePrompt> binding_;
30
31 DISALLOW_COPY_AND_ASSIGN(ChromePromptImpl);
32 };
33
34 } // namespace safe_browsing
35
36 #endif // CHROME_BROWSER_SAFE_BROWSING_SRT_CHROME_PROMPT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698