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

Unified Diff: services/navigation/public/cpp/view_observer.h

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_delegate.h ('k') | services/navigation/public/interfaces/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/navigation/public/cpp/view_observer.h
diff --git a/services/navigation/public/cpp/view_observer.h b/services/navigation/public/cpp/view_observer.h
deleted file mode 100644
index 34a2e86d0efb3c94410796ca3b525b75de752632..0000000000000000000000000000000000000000
--- a/services/navigation/public/cpp/view_observer.h
+++ /dev/null
@@ -1,33 +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.
-
-#ifndef SERVICES_NAVIGATION_PUBLIC_CPP_VIEW_OBSERVER_H_
-#define SERVICES_NAVIGATION_PUBLIC_CPP_VIEW_OBSERVER_H_
-
-namespace navigation {
-
-class View;
-
-class ViewObserver {
- public:
- // Called when network activity for the application(s) within |view| starts or
- // stops.
- virtual void LoadingStateChanged(View* view) {}
-
- // Called when the progress of network activity for the application(s) within
- // |view| changes.
- virtual void LoadProgressChanged(View* view, double progress) {}
-
- // Called when a navigation occurs within |view|.
- virtual void NavigationStateChanged(View* view) {}
-
- // Called when the target URL of a mouse click at the current mouse position
- // changes. Will provide an empty URL if no navigation would result from such
- // a click.
- virtual void HoverTargetURLChanged(View* view, const GURL& target_url) {}
-};
-
-} // namespace navigation
-
-#endif // SERVICES_NAVIGATION_PUBLIC_CPP_VIEW_OBSERVER_H_
« no previous file with comments | « services/navigation/public/cpp/view_delegate.h ('k') | services/navigation/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698