OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TabModel
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/ui/android/tab_model/
tab_model.cc
17
TabModel
::
TabModel
(Profile* profile)
42
TabModel
::~
TabModel
() {
45
Profile*
TabModel
::GetProfile() const {
49
bool
TabModel
::IsOffTheRecord() const {
53
browser_sync::SyncedWindowDelegate*
TabModel
::GetSyncedWindowDelegate() const {
57
SessionID::id_type
TabModel
::GetSessionId() const {
61
void
TabModel
::BroadcastSessionRestoreComplete() {
74
void
TabModel
::Observe
[
all
...]
tab_model.h
31
class
TabModel
: public content::NotificationObserver {
59
explicit
TabModel
(Profile* profile);
60
virtual ~
TabModel
();
62
// Instructs the
TabModel
to broadcast a notification that all tabs are now
69
// Determines how
TabModel
will interact with the profile.
74
// The profile associated with this
TabModel
.
77
// Describes if this
TabModel
contains an off-the-record profile.
80
// The SyncedWindowDelegate associated with this
TabModel
.
83
// Unique identifier of this
TabModel
for session restore. This id is only
88
// The Registrar used to register
TabModel
for notifications
[
all
...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
TabModel.java
5
package org.chromium.chrome.browser.
tabmodel
;
11
*
TabModel
organizes all the open tabs and allows you to create new ones. There are two TabModels
15
public interface
TabModel
extends TabList {
110
* @return The complete {@link TabList} this {@link
TabModel
} represents. Note that this may
111
* be different than this actual {@link
TabModel
} if it supports pending closures
Completed in 497 milliseconds