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

Unified Diff: blimp/client/app/linux/blimp_client_context_delegate_linux.cc

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 years, 11 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: blimp/client/app/linux/blimp_client_context_delegate_linux.cc
diff --git a/blimp/client/app/linux/blimp_client_context_delegate_linux.cc b/blimp/client/app/linux/blimp_client_context_delegate_linux.cc
deleted file mode 100644
index cc335e4156af95c3493074cfaa9dbe65e81810d4..0000000000000000000000000000000000000000
--- a/blimp/client/app/linux/blimp_client_context_delegate_linux.cc
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2016 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 "base/memory/ptr_util.h"
-#include "blimp/client/app/linux/blimp_client_context_delegate_linux.h"
-#include "blimp/client/public/resources/blimp_strings.h"
-#include "blimp/client/support/session/blimp_default_identity_provider.h"
-#include "net/base/net_errors.h"
-
-namespace blimp {
-namespace client {
-
-BlimpClientContextDelegateLinux::BlimpClientContextDelegateLinux() = default;
-
-BlimpClientContextDelegateLinux::~BlimpClientContextDelegateLinux() = default;
-
-void BlimpClientContextDelegateLinux::AttachBlimpContentsHelpers(
- BlimpContents* blimp_contents) {}
-
-void BlimpClientContextDelegateLinux::OnAssignmentConnectionAttempted(
- AssignmentRequestResult result,
- const Assignment& assignment) {
- if (result == ASSIGNMENT_REQUEST_RESULT_OK)
- return;
-
- LOG(WARNING) << string::AssignmentResultErrorToString(result);
-}
-
-std::unique_ptr<IdentityProvider>
-BlimpClientContextDelegateLinux::CreateIdentityProvider() {
- return base::MakeUnique<BlimpDefaultIdentityProvider>();
-}
-
-void BlimpClientContextDelegateLinux::OnAuthenticationError(
- const GoogleServiceAuthError& error) {
- LOG(WARNING) << "GoogleAuth error : " << error.ToString();
-}
-
-void BlimpClientContextDelegateLinux::OnConnected() {
- VLOG(1) << "Connected.";
-}
-
-void BlimpClientContextDelegateLinux::OnEngineDisconnected(int result) {
- LOG(WARNING) << "Disconnected from the engine, reason: "
- << string::EndConnectionMessageToString(result);
-}
-
-void BlimpClientContextDelegateLinux::OnNetworkDisconnected(int result) {
- LOG(WARNING) << "Disconnected, reason: " << net::ErrorToShortString(result);
-}
-
-} // namespace client
-} // namespace blimp
« no previous file with comments | « blimp/client/app/linux/blimp_client_context_delegate_linux.h ('k') | blimp/client/app/linux/blimp_display_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698