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

Unified Diff: blimp/client/core/contents/navigation_feature.cc

Issue 2058263002: Tied up BlimpNavigationController to NavigationFeature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_core
Patch Set: Moved NavigationFeature to blimp/client/core/contents Created 4 years, 5 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/core/contents/navigation_feature.cc
diff --git a/blimp/client/feature/navigation_feature.cc b/blimp/client/core/contents/navigation_feature.cc
similarity index 96%
rename from blimp/client/feature/navigation_feature.cc
rename to blimp/client/core/contents/navigation_feature.cc
index 9902230bc2f109e9f08bac2299276fe33196da8b..b904ea95aa078bfd2d1b4ba8251a0adb891df89b 100644
--- a/blimp/client/feature/navigation_feature.cc
+++ b/blimp/client/core/contents/navigation_feature.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "blimp/client/feature/navigation_feature.h"
+#include "blimp/client/core/contents/navigation_feature.h"
#include <map>
#include <string>
@@ -127,8 +127,7 @@ void NavigationFeature::ProcessMessage(
}
if (details.has_page_load_completed()) {
- delegate->OnPageLoadStatusUpdate(tab_id,
- details.page_load_completed());
+ delegate->OnPageLoadStatusUpdate(tab_id, details.page_load_completed());
}
} break;
case NavigationMessage::LOAD_URL:

Powered by Google App Engine
This is Rietveld 408576698