| Index: blimp/client/session/blimp_client_session_linux.cc
|
| diff --git a/blimp/client/session/blimp_client_session_linux.cc b/blimp/client/session/blimp_client_session_linux.cc
|
| deleted file mode 100644
|
| index 70aff423a8716e97039d27bac4858f15cb19755d..0000000000000000000000000000000000000000
|
| --- a/blimp/client/session/blimp_client_session_linux.cc
|
| +++ /dev/null
|
| @@ -1,78 +0,0 @@
|
| -// Copyright 2015 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 "blimp/client/session/blimp_client_session_linux.h"
|
| -
|
| -#include "base/logging.h"
|
| -#include "base/message_loop/message_loop.h"
|
| -#include "blimp/client/linux/blimp_display_manager.h"
|
| -#include "ui/events/platform/platform_event_source.h"
|
| -#include "ui/gfx/geometry/size.h"
|
| -#include "url/gurl.h"
|
| -
|
| -namespace blimp {
|
| -namespace client {
|
| -namespace {
|
| -
|
| -const int kDummyTabId = 0;
|
| -
|
| -class FakeNavigationFeatureDelegate
|
| - : public NavigationFeature::NavigationFeatureDelegate {
|
| - public:
|
| - FakeNavigationFeatureDelegate();
|
| - ~FakeNavigationFeatureDelegate();
|
| -
|
| - // NavigationFeatureDelegate implementation.
|
| - void OnUrlChanged(int tab_id, const GURL& url) override;
|
| - void OnFaviconChanged(int tab_id, const SkBitmap& favicon) override;
|
| - void OnTitleChanged(int tab_id, const std::string& title) override;
|
| - void OnLoadingChanged(int tab_id, bool loading) override;
|
| -
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(FakeNavigationFeatureDelegate);
|
| -};
|
| -
|
| -FakeNavigationFeatureDelegate::FakeNavigationFeatureDelegate() {}
|
| -
|
| -FakeNavigationFeatureDelegate::~FakeNavigationFeatureDelegate() {}
|
| -
|
| -void FakeNavigationFeatureDelegate::OnUrlChanged(int tab_id, const GURL& url) {
|
| - DVLOG(1) << "URL changed to " << url << " in tab " << tab_id;
|
| -}
|
| -
|
| -void FakeNavigationFeatureDelegate::OnFaviconChanged(int tab_id,
|
| - const SkBitmap& favicon) {
|
| - DVLOG(1) << "Favicon changed in tab " << tab_id;
|
| -}
|
| -
|
| -void FakeNavigationFeatureDelegate::OnTitleChanged(int tab_id,
|
| - const std::string& title) {
|
| - DVLOG(1) << "Title changed to " << title << " in tab " << tab_id;
|
| -}
|
| -
|
| -void FakeNavigationFeatureDelegate::OnLoadingChanged(int tab_id, bool loading) {
|
| - DVLOG(1) << "Loading status changed to " << loading << " in tab " << tab_id;
|
| -}
|
| -
|
| -} // namespace
|
| -
|
| -BlimpClientSessionLinux::BlimpClientSessionLinux()
|
| - : event_source_(ui::PlatformEventSource::CreateDefault()),
|
| - navigation_feature_delegate_(new FakeNavigationFeatureDelegate) {
|
| - blimp_display_manager_.reset(new BlimpDisplayManager(gfx::Size(800, 600),
|
| - this,
|
| - GetRenderWidgetFeature(),
|
| - GetTabControlFeature()));
|
| - GetNavigationFeature()->SetDelegate(kDummyTabId,
|
| - navigation_feature_delegate_.get());
|
| -}
|
| -
|
| -BlimpClientSessionLinux::~BlimpClientSessionLinux() {}
|
| -
|
| -void BlimpClientSessionLinux::OnClosed() {
|
| - base::MessageLoop::current()->QuitNow();
|
| -}
|
| -
|
| -} // namespace client
|
| -} // namespace blimp
|
|
|