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

Unified Diff: mojo/services/kiosk_wm/navigator_host_impl.cc

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 9 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 | « mojo/services/kiosk_wm/navigator_host_impl.h ('k') | mojo/services/native_viewport/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/kiosk_wm/navigator_host_impl.cc
diff --git a/mojo/services/kiosk_wm/navigator_host_impl.cc b/mojo/services/kiosk_wm/navigator_host_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3b2833982435e40dcc0a372e4a35cc51b9bd9d01
--- /dev/null
+++ b/mojo/services/kiosk_wm/navigator_host_impl.cc
@@ -0,0 +1,54 @@
+// Copyright 2014 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 "mojo/services/kiosk_wm/navigator_host_impl.h"
+
+#include "mojo/services/kiosk_wm/kiosk_wm.h"
+
+namespace kiosk_wm {
+
+NavigatorHostImpl::NavigatorHostImpl(KioskWM* window_manager)
+ : current_index_(-1), kiosk_wm_(window_manager) {
+}
+
+NavigatorHostImpl::~NavigatorHostImpl() {
+}
+
+void NavigatorHostImpl::Bind(
+ mojo::InterfaceRequest<mojo::NavigatorHost> request) {
+ bindings_.AddBinding(this, request.Pass());
+}
+
+void NavigatorHostImpl::DidNavigateLocally(const mojo::String& url) {
+ RecordNavigation(url);
+ // TODO(abarth): Do something interesting.
+}
+
+void NavigatorHostImpl::RequestNavigate(mojo::Target target,
+ mojo::URLRequestPtr request) {
+ // kiosk_wm sets up default services including navigation.
+ kiosk_wm_->ReplaceContentWithURL(request->url);
+}
+
+void NavigatorHostImpl::RequestNavigateHistory(int32_t delta) {
+ if (history_.empty())
+ return;
+ current_index_ =
+ std::max(0, std::min(current_index_ + delta,
+ static_cast<int32_t>(history_.size()) - 1));
+ kiosk_wm_->ReplaceContentWithURL(history_[current_index_]);
+}
+
+void NavigatorHostImpl::RecordNavigation(const std::string& url) {
+ if (current_index_ >= 0 && history_[current_index_] == url) {
+ // This is a navigation to the current entry, ignore.
+ return;
+ }
+
+ history_.erase(history_.begin() + (current_index_ + 1), history_.end());
+ history_.push_back(url);
+ ++current_index_;
+}
+
+} // namespace kiosk_wm
« no previous file with comments | « mojo/services/kiosk_wm/navigator_host_impl.h ('k') | mojo/services/native_viewport/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698