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

Unified Diff: chrome/browser/safe_browsing/srt_chrome_prompt_impl.cc

Issue 2846333003: Chrome cleaner: move Chrome Cleaner files to their own directory (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/srt_chrome_prompt_impl.cc
diff --git a/chrome/browser/safe_browsing/srt_chrome_prompt_impl.cc b/chrome/browser/safe_browsing/srt_chrome_prompt_impl.cc
deleted file mode 100644
index dae99a6288ffddaed5b20fbcf0cb60d8afb037f5..0000000000000000000000000000000000000000
--- a/chrome/browser/safe_browsing/srt_chrome_prompt_impl.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/safe_browsing/srt_chrome_prompt_impl.h"
-
-#include "base/logging.h"
-
-namespace safe_browsing {
-
-using chrome_cleaner::mojom::ChromePrompt;
-using chrome_cleaner::mojom::ChromePromptRequest;
-using chrome_cleaner::mojom::ElevationStatus;
-using chrome_cleaner::mojom::PromptAcceptance;
-using chrome_cleaner::mojom::UwSPtr;
-
-ChromePromptImpl::ChromePromptImpl(ChromePromptRequest request,
- base::Closure on_connection_closed)
- : binding_(this, std::move(request)) {
- binding_.set_connection_error_handler(std::move(on_connection_closed));
-}
-
-ChromePromptImpl::~ChromePromptImpl() {}
-
-void ChromePromptImpl::PromptUser(
- std::vector<UwSPtr> removable_uws_found,
- ElevationStatus elevation_status,
- const ChromePrompt::PromptUserCallback& callback) {
- // Placeholder. The actual implementation will show the prompt dialog to the
- // user and invoke this callback depending on the user's response.
- callback.Run(PromptAcceptance::DENIED);
-}
-
-} // namespace safe_browsing
« no previous file with comments | « chrome/browser/safe_browsing/srt_chrome_prompt_impl.h ('k') | chrome/browser/safe_browsing/srt_client_info_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698