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

Unified Diff: chrome/browser/ui/browser.h

Issue 1164873003: Show origin for hosted apps that navigate away from their start origin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback for the stig Created 5 years, 6 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 | « no previous file | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.h
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
index 0fee68b7c1e9c9e33e3d884a9da82c28cf688834..c4a3a62c749bc4ac20a06d5bbaea31f5a04c8074 100644
--- a/chrome/browser/ui/browser.h
+++ b/chrome/browser/ui/browser.h
@@ -81,7 +81,7 @@ class SessionStorageNamespace;
}
namespace extensions {
-class BookmarkAppBrowserController;
+class HostedAppBrowserController;
class Extension;
class ExtensionRegistry;
class WindowController;
@@ -283,8 +283,8 @@ class Browser : public TabStripModelObserver,
BrowserInstantController* instant_controller() {
return instant_controller_.get();
}
- extensions::BookmarkAppBrowserController* bookmark_app_controller() {
- return bookmark_app_controller_.get();
+ extensions::HostedAppBrowserController* hosted_app_controller() {
+ return hosted_app_controller_.get();
}
// Get the FindBarController for this browser, creating it if it does not
@@ -963,7 +963,7 @@ class Browser : public TabStripModelObserver,
scoped_ptr<BrowserInstantController> instant_controller_;
// Helper which handles bookmark app specific browser configuration.
- scoped_ptr<extensions::BookmarkAppBrowserController> bookmark_app_controller_;
+ scoped_ptr<extensions::HostedAppBrowserController> hosted_app_controller_;
BookmarkBar::State bookmark_bar_state_;
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698