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

Unified Diff: chrome/browser/extensions/tab_helper.cc

Issue 349713002: Android: Remove events extensions API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
Index: chrome/browser/extensions/tab_helper.cc
diff --git a/chrome/browser/extensions/tab_helper.cc b/chrome/browser/extensions/tab_helper.cc
index e6ad1bc0f86f9854664673ec7559ac483b80b92c..6b98265f8285f604c3261e87e6d7f5768cc113a6 100644
--- a/chrome/browser/extensions/tab_helper.cc
+++ b/chrome/browser/extensions/tab_helper.cc
@@ -122,9 +122,7 @@ TabHelper::TabHelper(content::WebContents* web_contents)
// a separate routing class with an observer interface should be written.
profile_ = Profile::FromBrowserContext(web_contents->GetBrowserContext());
-#if defined(ENABLE_EXTENSIONS)
AddScriptExecutionObserver(ActivityLog::GetInstance(profile_));
-#endif
registrar_.Add(this,
content::NOTIFICATION_LOAD_STOP,
@@ -133,9 +131,7 @@ TabHelper::TabHelper(content::WebContents* web_contents)
}
TabHelper::~TabHelper() {
-#if defined(ENABLE_EXTENSIONS)
RemoveScriptExecutionObserver(ActivityLog::GetInstance(profile_));
-#endif
}
void TabHelper::CreateApplicationShortcuts() {
@@ -231,13 +227,10 @@ void TabHelper::FinishCreateBookmarkApp(
ChromeLauncherController::instance()->PinAppWithID(extension->id());
#endif
-// Android does not implement browser_finder.cc.
-#if !defined(OS_ANDROID)
Browser* browser = chrome::FindBrowserWithWebContents(web_contents());
if (browser) {
browser->window()->ShowBookmarkAppBubble(web_app_info, extension->id());
}
-#endif
}
void TabHelper::RenderViewCreated(RenderViewHost* render_view_host) {
@@ -247,13 +240,11 @@ void TabHelper::RenderViewCreated(RenderViewHost* render_view_host) {
void TabHelper::DidNavigateMainFrame(
const content::LoadCommittedDetails& details,
const content::FrameNavigateParams& params) {
-#if defined(ENABLE_EXTENSIONS)
if (ExtensionSystem::Get(profile_)->extension_service() &&
RulesRegistryService::Get(profile_)) {
RulesRegistryService::Get(profile_)->content_rules_registry()->
DidNavigateMainFrame(web_contents(), details, params);
}
-#endif // defined(ENABLE_EXTENSIONS)
content::BrowserContext* context = web_contents()->GetBrowserContext();
ExtensionRegistry* registry = ExtensionRegistry::Get(context);
@@ -261,7 +252,6 @@ void TabHelper::DidNavigateMainFrame(
if (CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableStreamlinedHostedApps)) {
-#if !defined(OS_ANDROID)
Browser* browser = chrome::FindBrowserWithWebContents(web_contents());
if (browser && browser->is_app()) {
SetExtensionApp(registry->GetExtensionById(
@@ -271,7 +261,6 @@ void TabHelper::DidNavigateMainFrame(
UpdateExtensionAppIcon(
enabled_extensions.GetExtensionOrAppByURL(params.url));
}
-#endif
} else {
UpdateExtensionAppIcon(
enabled_extensions.GetExtensionOrAppByURL(params.url));
@@ -318,16 +307,12 @@ bool TabHelper::OnMessageReceived(const IPC::Message& message) {
bool TabHelper::OnMessageReceived(const IPC::Message& message,
content::RenderFrameHost* render_frame_host) {
-#if defined(ENABLE_EXTENSIONS)
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(TabHelper, message)
IPC_MESSAGE_HANDLER(ChromeViewHostMsg_DetailedConsoleMessageAdded,
OnDetailedConsoleMessageAdded)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
-#else
- bool handled = false;
-#endif
return handled;
}
@@ -344,8 +329,7 @@ void TabHelper::DidCloneToNewWebContents(WebContents* old_web_contents,
void TabHelper::OnDidGetApplicationInfo(int32 page_id,
const WebApplicationInfo& info) {
- // Android does not implement BrowserWindow.
-#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
+#if !defined(OS_MACOSX)
web_app_info_ = info;
NavigationEntry* entry =
@@ -396,7 +380,6 @@ void TabHelper::OnInlineWebstoreInstall(int install_id,
const std::string& webstore_item_id,
const GURL& requestor_url,
int listeners_mask) {
-#if defined(ENABLE_EXTENSIONS)
// Check that the listener is reasonable. We should never get anything other
// than an install stage listener, a download listener, or both.
if ((listeners_mask & ~(api::webstore::INSTALL_STAGE_LISTENER |
@@ -410,7 +393,6 @@ void TabHelper::OnInlineWebstoreInstall(int install_id,
Profile::FromBrowserContext(web_contents()->GetBrowserContext());
WebstoreAPI::Get(profile)->OnInlineInstallStart(
return_route_id, this, webstore_item_id, listeners_mask);
-#endif
WebstoreStandaloneInstaller::Callback callback =
base::Bind(&TabHelper::OnInlineInstallComplete, base::Unretained(this),
@@ -462,13 +444,11 @@ void TabHelper::OnContentScriptsExecuting(
void TabHelper::OnWatchedPageChange(
const std::vector<std::string>& css_selectors) {
-#if defined(ENABLE_EXTENSIONS)
if (ExtensionSystem::Get(profile_)->extension_service() &&
RulesRegistryService::Get(profile_)) {
RulesRegistryService::Get(profile_)->content_rules_registry()->Apply(
web_contents(), css_selectors);
}
-#endif // defined(ENABLE_EXTENSIONS)
}
void TabHelper::OnDetailedConsoleMessageAdded(
@@ -476,7 +456,6 @@ void TabHelper::OnDetailedConsoleMessageAdded(
const base::string16& source,
const StackTrace& stack_trace,
int32 severity_level) {
-#if defined(ENABLE_EXTENSIONS)
if (IsSourceFromAnExtension(source)) {
content::RenderViewHost* rvh = web_contents()->GetRenderViewHost();
ErrorConsole::Get(profile_)->ReportError(
@@ -492,7 +471,6 @@ void TabHelper::OnDetailedConsoleMessageAdded(
rvh->GetRoutingID(),
rvh->GetProcess()->GetID())));
}
-#endif
}
const Extension* TabHelper::GetExtension(const std::string& extension_app_id) {
« no previous file with comments | « chrome/browser/extensions/activity_log/activity_log.cc ('k') | chrome/browser/sessions/tab_restore_service_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698