OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ForeignSession
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ForeignSessionHelper.java
39
public static class
ForeignSession
{
56
private
ForeignSession
(String tag, String name, int deviceType, long modifiedTime) {
97
private static
ForeignSession
pushSession(
98
List<
ForeignSession
> sessions, String tag, String name, int deviceType,
100
ForeignSession
session = new
ForeignSession
(tag, name, deviceType, modifiedTime);
107
ForeignSession
session, long timestamp, int sessionId) {
162
public List<
ForeignSession
> getForeignSessions() {
163
List<
ForeignSession
> result = new ArrayList<
ForeignSession
>();
[
all
...]
NewTabPagePrefs.java
7
import org.chromium.chrome.browser.ForeignSessionHelper.
ForeignSession
;
87
public void setForeignSessionCollapsed(
ForeignSession
session, boolean isCollapsed) {
96
public boolean getForeignSessionCollapsed(
ForeignSession
session) {
/external/chromium/chrome/browser/sessions/
session_types.cc
111
//
ForeignSession
--------------------------------------------------------------
113
ForeignSession
::
ForeignSession
() : foreign_session_tag("invalid") {
116
ForeignSession
::~
ForeignSession
() {
session_types.h
194
struct
ForeignSession
{
195
ForeignSession
();
196
~
ForeignSession
();
/external/chromium/chrome/browser/sync/glue/
foreign_session_tracker.h
21
// Class to manage foreign sessions. The tracker will own all
ForeignSession
31
bool LookupAllForeignSessions(std::vector<const
ForeignSession
*>* sessions);
52
// Returns a pointer to the
ForeignSession
object associated with
54
ForeignSession
* GetForeignSession(const std::string& foreign_session_tag);
93
typedef std::map<std::string,
ForeignSession
*> ForeignSessionMap;
foreign_session_tracker.cc
19
std::vector<const
ForeignSession
*>* sessions) {
25
ForeignSession
* foreign_session = i->second;
67
ForeignSession
* ForeignSessionTracker::GetForeignSession(
69
scoped_ptr<
ForeignSession
> foreign_session;
74
foreign_session.reset(new
ForeignSession
);
87
delete iter->second; // Delete the
ForeignSession
object.
123
// Delete
ForeignSession
objects (which also deletes all their windows/tabs).
session_model_associator_unittest.cc
62
ForeignSession
* session = tracker.GetForeignSession(tag);
130
ForeignSession
* session = tracker.GetForeignSession(tag1);
131
ForeignSession
* session2 = tracker.GetForeignSession(tag2);
132
ForeignSession
* session3 = tracker.GetForeignSession(tag3);
152
std::vector<const
ForeignSession
*> sessions;
session_model_associator.h
146
// Caller does NOT own
ForeignSession
objects.
147
bool GetAllForeignSessions(std::vector<const
ForeignSession
*>* sessions);
150
// Caller does NOT own
ForeignSession
objects.
299
// This is comprised of
ForeignSession
*, IDToSessionTabMap*, and any orphaned
session_model_associator.cc
523
// Load (or create) the
ForeignSession
object for this client.
524
ForeignSession
* foreign_session =
774
std::vector<const
ForeignSession
*>* sessions) {
[
all
...]
/external/chromium/chrome/browser/ui/webui/
foreign_session_handler.cc
90
std::vector<const
ForeignSession
*> sessions;
105
for (std::vector<const
ForeignSession
*>::const_iterator i =
108
const
ForeignSession
* foreign_session = *i;
/external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc
219
std::vector<const
ForeignSession
*> foreign_sessions;
291
std::vector<const
ForeignSession
*> foreign_sessions;
Completed in 97 milliseconds