1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// Copyright (c) 2012 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 "chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h"
#include "base/memory/ref_counted.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sessions/session_tab_helper.h"
#include "chrome/browser/sync/glue/synced_window_delegate.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/web_contents.h"
#if defined(ENABLE_EXTENSIONS)
#include "chrome/browser/extensions/tab_helper.h"
#include "extensions/common/extension.h"
#endif
#if defined(ENABLE_SUPERVISED_USERS)
#include "chrome/browser/supervised_user/supervised_user_navigation_observer.h"
#endif
using content::NavigationEntry;
DEFINE_WEB_CONTENTS_USER_DATA_KEY(TabContentsSyncedTabDelegate);
TabContentsSyncedTabDelegate::TabContentsSyncedTabDelegate(
content::WebContents* web_contents)
: web_contents_(web_contents), sync_session_id_(0) {}
TabContentsSyncedTabDelegate::~TabContentsSyncedTabDelegate() {}
SessionID::id_type TabContentsSyncedTabDelegate::GetWindowId() const {
return SessionTabHelper::FromWebContents(web_contents_)->window_id().id();
}
SessionID::id_type TabContentsSyncedTabDelegate::GetSessionId() const {
return SessionTabHelper::FromWebContents(web_contents_)->session_id().id();
}
bool TabContentsSyncedTabDelegate::IsBeingDestroyed() const {
return web_contents_->IsBeingDestroyed();
}
Profile* TabContentsSyncedTabDelegate::profile() const {
return Profile::FromBrowserContext(web_contents_->GetBrowserContext());
}
std::string TabContentsSyncedTabDelegate::GetExtensionAppId() const {
#if defined(ENABLE_EXTENSIONS)
const scoped_refptr<const extensions::Extension> extension_app(
extensions::TabHelper::FromWebContents(web_contents_)->extension_app());
if (extension_app.get())
return extension_app->id();
#endif
return std::string();
}
int TabContentsSyncedTabDelegate::GetCurrentEntryIndex() const {
return web_contents_->GetController().GetCurrentEntryIndex();
}
int TabContentsSyncedTabDelegate::GetEntryCount() const {
return web_contents_->GetController().GetEntryCount();
}
int TabContentsSyncedTabDelegate::GetPendingEntryIndex() const {
return web_contents_->GetController().GetPendingEntryIndex();
}
NavigationEntry* TabContentsSyncedTabDelegate::GetPendingEntry() const {
return web_contents_->GetController().GetPendingEntry();
}
NavigationEntry* TabContentsSyncedTabDelegate::GetEntryAtIndex(int i) const {
return web_contents_->GetController().GetEntryAtIndex(i);
}
NavigationEntry* TabContentsSyncedTabDelegate::GetActiveEntry() const {
return web_contents_->GetController().GetVisibleEntry();
}
bool TabContentsSyncedTabDelegate::ProfileIsSupervised() const {
return profile()->IsSupervised();
}
const std::vector<const content::NavigationEntry*>*
TabContentsSyncedTabDelegate::GetBlockedNavigations() const {
#if defined(ENABLE_SUPERVISED_USERS)
SupervisedUserNavigationObserver* navigation_observer =
SupervisedUserNavigationObserver::FromWebContents(web_contents_);
DCHECK(navigation_observer);
return navigation_observer->blocked_navigations();
#else
NOTREACHED();
return NULL;
#endif
}
bool TabContentsSyncedTabDelegate::IsPinned() const {
const browser_sync::SyncedWindowDelegate* window =
browser_sync::SyncedWindowDelegate::FindSyncedWindowDelegateWithId(
GetWindowId());
// We might not have a parent window, e.g. Developer Tools.
return window ? window->IsTabPinned(this) : false;
}
bool TabContentsSyncedTabDelegate::HasWebContents() const { return true; }
content::WebContents* TabContentsSyncedTabDelegate::GetWebContents() const {
return web_contents_;
}
int TabContentsSyncedTabDelegate::GetSyncId() const {
return sync_session_id_;
}
void TabContentsSyncedTabDelegate::SetSyncId(int sync_id) {
sync_session_id_ = sync_id;
}
|