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

Unified Diff: services/navigation/public/cpp/view.cc

Issue 2901613002: Remove navigation_service_unittests, along with the service itself. (Closed)
Patch Set: Fix isolate files? 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/navigation/public/cpp/view.h ('k') | services/navigation/public/cpp/view_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/navigation/public/cpp/view.cc
diff --git a/services/navigation/public/cpp/view.cc b/services/navigation/public/cpp/view.cc
deleted file mode 100644
index 9a86e425827c6ad038a1f1837088439b4a357052..0000000000000000000000000000000000000000
--- a/services/navigation/public/cpp/view.cc
+++ /dev/null
@@ -1,193 +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 "services/navigation/public/cpp/view.h"
-
-#include "base/bind.h"
-#include "base/memory/ptr_util.h"
-#include "base/strings/utf_string_conversions.h"
-#include "services/navigation/public/cpp/view_delegate.h"
-#include "services/navigation/public/cpp/view_observer.h"
-#include "ui/aura/mus/window_port_mus.h"
-#include "ui/aura/window.h"
-
-namespace navigation {
-namespace {
-
-// Callback with result of Embed().
-void EmbedCallback(bool result) {}
-
-} // namespace
-
-////////////////////////////////////////////////////////////////////////////////
-// View, public:
-
-View::View(mojom::ViewFactoryPtr factory) : binding_(this) {
- mojom::ViewClientPtr client;
- binding_.Bind(MakeRequest(&client));
- factory->CreateView(std::move(client), MakeRequest(&view_));
-}
-
-View::View(mojom::ViewPtr view, mojom::ViewClientRequest request)
- : view_(std::move(view)), binding_(this, std::move(request)) {}
-
-View::~View() {}
-
-void View::AddObserver(ViewObserver* observer) {
- observers_.AddObserver(observer);
-}
-
-void View::RemoveObserver(ViewObserver* observer) {
- observers_.RemoveObserver(observer);
-}
-
-void View::NavigateToURL(const GURL& url) {
- view_->NavigateTo(url);
-}
-
-void View::NavigateToOffset(int offset) {
- view_->NavigateToOffset(offset);
-}
-
-void View::GoBack() {
- if (can_go_back_)
- view_->GoBack();
-}
-
-void View::GoForward() {
- if (can_go_forward_)
- view_->GoForward();
-}
-
-void View::GetBackMenuItems(std::vector<NavigationListItem>* items) {
- DCHECK(items);
- for (int i = navigation_list_cursor_ - 1, offset = -1; i >= 0;
- --i, --offset) {
- items->push_back(NavigationListItem(
- base::UTF8ToUTF16(navigation_list_[i]->title), offset));
- }
-}
-
-void View::GetForwardMenuItems(std::vector<NavigationListItem>* items) {
- DCHECK(items);
- for (int i = navigation_list_cursor_ + 1, offset = 1;
- i < static_cast<int>(navigation_list_.size()); ++i, ++offset) {
- items->push_back(NavigationListItem(
- base::UTF8ToUTF16(navigation_list_[i]->title), offset));
- }
-}
-
-void View::Reload(bool bypass_cache) {
- view_->Reload(bypass_cache);
-}
-
-void View::Stop() {
- view_->Stop();
-}
-
-void View::ShowInterstitial(const std::string& html) {
- view_->ShowInterstitial(html);
-}
-
-void View::HideInterstitial() {
- view_->HideInterstitial();
-}
-
-void View::EmbedInWindow(aura::Window* parent) {
- ui::mojom::WindowTreeClientPtr client;
- view_->GetWindowTreeClient(MakeRequest(&client));
- const uint32_t embed_flags = 0u; // Nothing special.
- aura::WindowPortMus::Get(parent)->Embed(std::move(client), embed_flags,
- base::Bind(&EmbedCallback));
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// View, mojom::ViewClient implementation:
-
-void View::OpenURL(mojom::OpenURLParamsPtr params) {
- if (delegate_)
- delegate_->OpenURL(this, std::move(params));
-}
-
-void View::LoadingStateChanged(bool is_loading) {
- is_loading_ = is_loading;
- for (auto& observer : observers_)
- observer.LoadingStateChanged(this);
-}
-
-void View::NavigationStateChanged(const GURL& url,
- const std::string& title,
- bool can_go_back,
- bool can_go_forward) {
- url_ = url;
- title_ = base::UTF8ToUTF16(title);
- can_go_back_ = can_go_back;
- can_go_forward_ = can_go_forward;
- for (auto& observer : observers_)
- observer.NavigationStateChanged(this);
-}
-
-void View::LoadProgressChanged(double progress) {
- for (auto& observer : observers_)
- observer.LoadProgressChanged(this, progress);
-}
-
-void View::UpdateHoverURL(const GURL& url) {
- for (auto& observer : observers_)
- observer.HoverTargetURLChanged(this, url);
-}
-
-void View::ViewCreated(mojom::ViewPtr view,
- mojom::ViewClientRequest request,
- bool is_popup,
- const gfx::Rect& initial_bounds,
- bool user_gesture) {
- if (delegate_) {
- delegate_->ViewCreated(
- this, base::WrapUnique(new View(std::move(view), std::move(request))),
- is_popup, initial_bounds, user_gesture);
- }
-}
-
-void View::Close() {
- if (delegate_)
- delegate_->Close(this);
-}
-
-void View::NavigationPending(mojom::NavigationEntryPtr entry) {
- pending_navigation_ = std::move(entry);
-}
-
-void View::NavigationCommitted(mojom::NavigationCommittedDetailsPtr details,
- int current_index) {
- switch (details->type) {
- case mojom::NavigationType::NEW_PAGE:
- navigation_list_.push_back(std::move(pending_navigation_));
- navigation_list_cursor_ = current_index;
- break;
- case mojom::NavigationType::EXISTING_PAGE:
- navigation_list_cursor_ = current_index;
- break;
- default:
- break;
- }
-}
-
-void View::NavigationEntryChanged(mojom::NavigationEntryPtr entry,
- int entry_index) {
- navigation_list_[entry_index] = std::move(entry);
-}
-
-void View::NavigationListPruned(bool from_front, int count) {
- DCHECK(count < static_cast<int>(navigation_list_.size()));
- if (from_front) {
- auto it = navigation_list_.begin() + count;
- navigation_list_.erase(navigation_list_.begin(), it);
- } else {
- auto it = navigation_list_.end() - count;
- navigation_list_.erase(it, navigation_list_.end());
- }
-}
-
-} // namespace navigation
« no previous file with comments | « services/navigation/public/cpp/view.h ('k') | services/navigation/public/cpp/view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698