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

Unified Diff: components/mus/public/cpp/lib/window_tree_client_impl.cc

Issue 1492183002: mus: Remove some dead code from client-lib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « components/mus/public/cpp/lib/window_tree_client_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/public/cpp/lib/window_tree_client_impl.cc
diff --git a/components/mus/public/cpp/lib/window_tree_client_impl.cc b/components/mus/public/cpp/lib/window_tree_client_impl.cc
index 163f1a35d31bdc70f3a169568e1c36a8d085bba5..5b1553f95f042ef6c560c46093b3fedaba4cf57e 100644
--- a/components/mus/public/cpp/lib/window_tree_client_impl.cc
+++ b/components/mus/public/cpp/lib/window_tree_client_impl.cc
@@ -655,13 +655,8 @@ void WindowTreeClientImpl::WmSetProperty(uint32_t change_id,
////////////////////////////////////////////////////////////////////////////////
// WindowTreeClientImpl, private:
-void WindowTreeClientImpl::OnActionCompleted(bool success) {
- if (!change_acked_callback_.is_null())
- change_acked_callback_.Run();
-}
-
mojo::Callback<void(bool)> WindowTreeClientImpl::ActionCompletedCallback() {
- return [this](bool success) { OnActionCompleted(success); };
+ return [this](bool success) {};
}
} // namespace mus
« no previous file with comments | « components/mus/public/cpp/lib/window_tree_client_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698