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

Side by Side Diff: chrome/browser/extensions/api/sessions/sessions_api.cc

Issue 21022018: Sessions API - previously Session Restore API. Supports restoring currently open foreign windows an… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: delete test. Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/extensions/api/sessions/sessions_api.h"
6
7 #include <vector>
8
9 #include "base/i18n/rtl.h"
10 #include "base/lazy_instance.h"
11 #include "base/prefs/pref_service.h"
12 #include "base/strings/string_number_conversions.h"
13 #include "base/strings/stringprintf.h"
14 #include "base/strings/utf_string_conversions.h"
15 #include "base/time/time.h"
16 #include "chrome/browser/extensions/api/sessions/session_id.h"
17 #include "chrome/browser/extensions/api/tabs/windows_util.h"
18 #include "chrome/browser/extensions/extension_function_dispatcher.h"
19 #include "chrome/browser/extensions/extension_function_registry.h"
20 #include "chrome/browser/extensions/extension_tab_util.h"
21 #include "chrome/browser/extensions/window_controller.h"
22 #include "chrome/browser/extensions/window_controller_list.h"
23 #include "chrome/browser/profiles/profile.h"
24 #include "chrome/browser/search/search.h"
25 #include "chrome/browser/sessions/session_restore.h"
26 #include "chrome/browser/sessions/tab_restore_service_delegate.h"
27 #include "chrome/browser/sessions/tab_restore_service_factory.h"
28 #include "chrome/browser/sync/glue/session_model_associator.h"
29 #include "chrome/browser/sync/glue/synced_session.h"
30 #include "chrome/browser/sync/profile_sync_service.h"
31 #include "chrome/browser/sync/profile_sync_service_factory.h"
32 #include "chrome/browser/ui/browser.h"
33 #include "chrome/browser/ui/browser_finder.h"
34 #include "chrome/browser/ui/host_desktop.h"
35 #include "chrome/browser/ui/tabs/tab_strip_model.h"
36 #include "chrome/common/pref_names.h"
37 #include "content/public/browser/web_contents.h"
38 #include "extensions/common/error_utils.h"
39 #include "net/base/net_util.h"
40 #include "ui/base/layout.h"
41
42 namespace extensions {
43
44 namespace GetRecentlyClosed = api::sessions::GetRecentlyClosed;
45 namespace GetDevices = api::sessions::GetDevices;
46 namespace Restore = api::sessions::Restore;
47 namespace tabs = api::tabs;
48 namespace windows = api::windows;
49
50 const char kNoRecentlyClosedSessionsError[] =
51 "There are no recently closed sessions.";
52 const char kInvalidSessionIdError[] = "Invalid session id: \"*\".";
53 const char kNoBrowserToRestoreSession[] =
54 "There are no browser windows to restore the session.";
55 const char kSessionSyncError[] = "Synced sessions are not available.";
56
57 // Comparator function for use with std::sort that will sort sessions by
58 // descending modified_time (i.e., most recent first).
59 bool SortSessionsByRecency(const browser_sync::SyncedSession* s1,
60 const browser_sync::SyncedSession* s2) {
61 return s1->modified_time > s2->modified_time;
62 }
63
64 // Comparator function for use with std::sort that will sort tabs in a window
65 // by descending timestamp (i.e., most recent first).
66 bool SortTabsByRecency(const SessionTab* t1, const SessionTab* t2) {
67 return t1->timestamp > t2->timestamp;
68 }
69
70 scoped_ptr<tabs::Tab> CreateTabModelHelper(
71 Profile* profile,
72 const sessions::SerializedNavigationEntry& current_navigation,
73 const std::string& session_id,
74 int index,
75 bool pinned,
76 int selected_index,
77 const Extension* extension) {
78 scoped_ptr<tabs::Tab> tab_struct(new tabs::Tab);
79
80 GURL gurl = current_navigation.virtual_url();
81 std::string title = UTF16ToUTF8(current_navigation.title());
82
83 tab_struct->session_id.reset(new std::string(session_id));
84 tab_struct->url.reset(new std::string(gurl.spec()));
85 if (!title.empty()) {
86 tab_struct->title.reset(new std::string(title));
87 } else {
88 const std::string languages =
89 profile->GetPrefs()->GetString(prefs::kAcceptLanguages);
90 tab_struct->title.reset(new std::string(UTF16ToUTF8(
91 net::FormatUrl(gurl, languages))));
92 }
93 tab_struct->index = index;
94 tab_struct->pinned = pinned;
95 tab_struct->selected = index == selected_index;
96 tab_struct->active = false;
97 tab_struct->highlighted = false;
98 tab_struct->incognito = false;
99 ExtensionTabUtil::ScrubTabForExtension(extension, tab_struct.get());
100 return tab_struct.Pass();
101 }
102
103 scoped_ptr<windows::Window> CreateWindowModelHelper(
104 scoped_ptr<std::vector<linked_ptr<tabs::Tab> > > tabs,
105 const std::string& session_id,
106 const windows::Window::Type& type,
107 const windows::Window::State& state) {
108 scoped_ptr<windows::Window> window_struct(new windows::Window);
109 window_struct->tabs = tabs.Pass();
110 window_struct->session_id.reset(new std::string(session_id));
111 window_struct->incognito = false;
112 window_struct->always_on_top = false;
113 window_struct->focused = false;
114 window_struct->type = type;
115 window_struct->state = state;
116 return window_struct.Pass();
117 }
118
119 scoped_ptr<api::sessions::Session> CreateSessionModelHelper(
120 int last_modified,
121 scoped_ptr<tabs::Tab> tab,
122 scoped_ptr<windows::Window> window) {
123 scoped_ptr<api::sessions::Session> session_struct(new api::sessions::Session);
124 session_struct->last_modified = last_modified;
125 if (tab)
126 session_struct->tab = tab.Pass();
127 else if (window)
128 session_struct->window = window.Pass();
129 else
130 NOTREACHED();
131 return session_struct.Pass();
132 }
133
134 bool is_tab_entry(const TabRestoreService::Entry* entry) {
135 return entry->type == TabRestoreService::TAB;
136 }
137
138 bool is_window_entry(const TabRestoreService::Entry* entry) {
139 return entry->type == TabRestoreService::WINDOW;
140 }
141
142 scoped_ptr<tabs::Tab> SessionsGetRecentlyClosedFunction::CreateTabModel(
143 const TabRestoreService::Tab& tab, int session_id, int selected_index) {
144 return CreateTabModelHelper(profile(),
145 tab.navigations[tab.current_navigation_index],
146 base::IntToString(session_id),
147 tab.tabstrip_index,
148 tab.pinned,
149 selected_index,
150 GetExtension());
151 }
152
153 scoped_ptr<windows::Window>
154 SessionsGetRecentlyClosedFunction::CreateWindowModel(
155 const TabRestoreService::Window& window,
156 int session_id) {
157 DCHECK(!window.tabs.empty());
158
159 scoped_ptr<std::vector<linked_ptr<tabs::Tab> > > tabs(
160 new std::vector<linked_ptr<tabs::Tab> >);
161 for (size_t i = 0; i < window.tabs.size(); ++i) {
162 tabs->push_back(make_linked_ptr(
163 CreateTabModel(window.tabs[i], window.tabs[i].id,
164 window.selected_tab_index).release()));
165 }
166
167 return CreateWindowModelHelper(tabs.Pass(),
168 base::IntToString(session_id),
169 windows::Window::TYPE_NORMAL,
170 windows::Window::STATE_NORMAL);
171 }
172
173 scoped_ptr<api::sessions::Session>
174 SessionsGetRecentlyClosedFunction::CreateSessionModel(
175 const TabRestoreService::Entry* entry) {
176 scoped_ptr<tabs::Tab> tab;
177 scoped_ptr<windows::Window> window;
178 switch (entry->type) {
179 case TabRestoreService::TAB:
180 tab = CreateTabModel(
181 *static_cast<const TabRestoreService::Tab*>(entry), entry->id, -1);
182 break;
183 case TabRestoreService::WINDOW:
184 window = CreateWindowModel(
185 *static_cast<const TabRestoreService::Window*>(entry), entry->id);
186 break;
187 default:
188 NOTREACHED();
189 }
190 return CreateSessionModelHelper(entry->timestamp.ToTimeT(),
191 tab.Pass(),
192 window.Pass());
193 }
194
195 bool SessionsGetRecentlyClosedFunction::RunImpl() {
196 scoped_ptr<GetRecentlyClosed::Params> params(
197 GetRecentlyClosed::Params::Create(*args_));
198 EXTENSION_FUNCTION_VALIDATE(params);
199 int max_results = api::sessions::MAX_SESSION_RESULTS;
200 if (params->filter && params->filter->max_results)
201 max_results = *params->filter->max_results;
202 EXTENSION_FUNCTION_VALIDATE(max_results >= 0 &&
203 max_results <= api::sessions::MAX_SESSION_RESULTS);
204
205 std::vector<linked_ptr<api::sessions::Session> > result;
206 TabRestoreService* tab_restore_service =
207 TabRestoreServiceFactory::GetForProfile(profile());
208 DCHECK(tab_restore_service);
209
210 // List of entries. They are ordered from most to least recent.
211 // We prune the list to contain max 25 entries at any time and removes
212 // uninteresting entries.
213 TabRestoreService::Entries entries = tab_restore_service->entries();
214 for (TabRestoreService::Entries::const_iterator it = entries.begin();
215 it != entries.end() && static_cast<int>(result.size()) < max_results;
216 ++it) {
217 TabRestoreService::Entry* entry = *it;
218 result.push_back(make_linked_ptr(CreateSessionModel(entry).release()));
219 }
220
221 results_ = GetRecentlyClosed::Results::Create(result);
222 return true;
223 }
224
225 scoped_ptr<tabs::Tab> SessionsGetDevicesFunction::CreateTabModel(
226 const std::string& session_tag,
227 const SessionTab& tab,
228 int tab_index,
229 int selected_index) {
230 std::string session_id = SessionId(session_tag, tab.tab_id.id()).ToString();
231 return CreateTabModelHelper(profile(),
232 tab.navigations[tab.current_navigation_index],
233 session_id,
234 tab_index,
235 tab.pinned,
236 selected_index,
237 GetExtension());
238 }
239
240 scoped_ptr<windows::Window> SessionsGetDevicesFunction::CreateWindowModel(
241 const SessionWindow& window, const std::string& session_tag) {
242 DCHECK(!window.tabs.empty());
243
244 // Prune tabs that are not syncable or are NewTabPage. Then, sort the tabs
245 // from most recent to least recent.
246 std::vector<const SessionTab*> tabs_in_window;
247 for (size_t i = 0; i < window.tabs.size(); ++i) {
248 const SessionTab* tab = window.tabs[i];
249 if (tab->navigations.empty())
250 continue;
251 const sessions::SerializedNavigationEntry& current_navigation =
252 tab->navigations.at(tab->normalized_navigation_index());
253 if (chrome::IsNTPURL(current_navigation.virtual_url(), profile())) {
254 continue;
255 }
256 tabs_in_window.push_back(tab);
257 }
258 if (tabs_in_window.empty())
259 return scoped_ptr<windows::Window>();
260 std::sort(tabs_in_window.begin(), tabs_in_window.end(), SortTabsByRecency);
261
262 scoped_ptr<std::vector<linked_ptr<tabs::Tab> > > tabs(
263 new std::vector<linked_ptr<tabs::Tab> >);
264 for (size_t i = 0; i < window.tabs.size(); ++i) {
265 tabs->push_back(make_linked_ptr(
266 CreateTabModel(session_tag, *window.tabs[i], i,
267 window.selected_tab_index).release()));
268 }
269
270 std::string session_id =
271 SessionId(session_tag, window.window_id.id()).ToString();
272
273 windows::Window::Type type = windows::Window::TYPE_NONE;
274 switch (window.type) {
275 case Browser::TYPE_TABBED:
276 type = windows::Window::TYPE_NORMAL;
277 break;
278 case Browser::TYPE_POPUP:
279 type = windows::Window::TYPE_POPUP;
280 break;
281 }
282
283 windows::Window::State state = windows::Window::STATE_NONE;
284 switch (window.show_state) {
285 case ui::SHOW_STATE_NORMAL:
286 state = windows::Window::STATE_NORMAL;
287 break;
288 case ui::SHOW_STATE_MINIMIZED:
289 state = windows::Window::STATE_MINIMIZED;
290 break;
291 case ui::SHOW_STATE_MAXIMIZED:
292 state = windows::Window::STATE_MAXIMIZED;
293 break;
294 case ui::SHOW_STATE_FULLSCREEN:
295 state = windows::Window::STATE_FULLSCREEN;
296 break;
297 case ui::SHOW_STATE_DEFAULT:
298 case ui::SHOW_STATE_INACTIVE:
299 case ui::SHOW_STATE_DETACHED:
300 case ui::SHOW_STATE_END:
301 break;
302 }
303
304 scoped_ptr<windows::Window> window_struct(
305 CreateWindowModelHelper(tabs.Pass(), session_id, type, state));
306 // TODO(dwankri): Dig deeper to resolve bounds not being optional, so closed
307 // windows in GetRecentlyClosed can have set values in Window helper.
308 window_struct->left.reset(new int(window.bounds.x()));
309 window_struct->top.reset(new int(window.bounds.y()));
310 window_struct->width.reset(new int(window.bounds.width()));
311 window_struct->height.reset(new int(window.bounds.height()));
312
313 return window_struct.Pass();
314 }
315
316 scoped_ptr<api::sessions::Session>
317 SessionsGetDevicesFunction::CreateSessionModel(
318 const SessionWindow& window, const std::string& session_tag) {
319 scoped_ptr<windows::Window> window_model(
320 CreateWindowModel(window, session_tag));
321 // There is a chance that after pruning uninteresting tabs the window will be
322 // empty.
323 return !window_model ? scoped_ptr<api::sessions::Session>()
324 : CreateSessionModelHelper(window.timestamp.ToTimeT(),
325 scoped_ptr<tabs::Tab>(),
326 window_model.Pass());
327 }
328
329 scoped_ptr<api::sessions::Device> SessionsGetDevicesFunction::CreateDeviceModel(
330 const browser_sync::SyncedSession* session) {
331 int max_results = api::sessions::MAX_SESSION_RESULTS;
332 // Already validated in RunImpl().
333 scoped_ptr<GetDevices::Params> params(GetDevices::Params::Create(*args_));
334 if (params->filter && params->filter->max_results)
335 max_results = *params->filter->max_results;
336
337 scoped_ptr<api::sessions::Device> device_struct(new api::sessions::Device);
338 device_struct->info = session->session_name;
339
340 for (browser_sync::SyncedSession::SyncedWindowMap::const_iterator it =
341 session->windows.begin(); it != session->windows.end() &&
342 static_cast<int>(device_struct->sessions.size()) < max_results; ++it) {
343 scoped_ptr<api::sessions::Session> session_model(CreateSessionModel(
344 *it->second, session->session_tag));
345 if (session_model)
346 device_struct->sessions.push_back(make_linked_ptr(
347 session_model.release()));
348 }
349 return device_struct.Pass();
350 }
351
352 bool SessionsGetDevicesFunction::RunImpl() {
353 ProfileSyncService* service =
354 ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile());
355 if (!(service && service->GetPreferredDataTypes().Has(syncer::SESSIONS))) {
356 // Sync not enabled.
357 results_ = GetDevices::Results::Create(
358 std::vector<linked_ptr<api::sessions::Device> >());
359 return true;
360 }
361
362 browser_sync::SessionModelAssociator* associator =
363 service->GetSessionModelAssociator();
364 std::vector<const browser_sync::SyncedSession*> sessions;
365 if (!(associator && associator->GetAllForeignSessions(&sessions))) {
366 results_ = GetDevices::Results::Create(
367 std::vector<linked_ptr<api::sessions::Device> >());
368 return true;
369 }
370
371 scoped_ptr<GetDevices::Params> params(GetDevices::Params::Create(*args_));
372 EXTENSION_FUNCTION_VALIDATE(params);
373 if (params->filter && params->filter->max_results) {
374 EXTENSION_FUNCTION_VALIDATE(*params->filter->max_results >= 0 &&
375 *params->filter->max_results <= api::sessions::MAX_SESSION_RESULTS);
376 }
377
378 std::vector<linked_ptr<api::sessions::Device> > result;
379 // Sort sessions from most recent to least recent.
380 std::sort(sessions.begin(), sessions.end(), SortSessionsByRecency);
381 for (size_t i = 0; i < sessions.size(); ++i) {
382 result.push_back(make_linked_ptr(CreateDeviceModel(sessions[i]).release()));
383 }
384
385 results_ = GetDevices::Results::Create(result);
386 return true;
387 }
388
389 void SessionsRestoreFunction::SetInvalidIdError(const std::string& invalid_id) {
390 SetError(ErrorUtils::FormatErrorMessage(kInvalidSessionIdError, invalid_id));
391 }
392
393
394 void SessionsRestoreFunction::SetResultRestoredTab(
395 const content::WebContents* contents) {
396 scoped_ptr<tabs::Tab> tab(tabs::Tab::FromValue(
397 *ExtensionTabUtil::CreateTabValue(contents, GetExtension())));
398 scoped_ptr<api::sessions::Session> restored_session(CreateSessionModelHelper(
399 base::Time::Now().ToTimeT(),
400 tab.Pass(),
401 scoped_ptr<windows::Window>()));
402 results_ = Restore::Results::Create(*restored_session);
403 }
404
405 bool SessionsRestoreFunction::SetResultRestoredWindow(int window_id) {
406 WindowController* controller = NULL;
407 if (!windows_util::GetWindowFromWindowID(this, window_id, &controller)) {
408 // error_ is set by GetWindowFromWindowId function call.
409 return false;
410 }
411 scoped_ptr<windows::Window> window(windows::Window::FromValue(
412 *controller->CreateWindowValueWithTabs(GetExtension())));
413 results_ = Restore::Results::Create(*CreateSessionModelHelper(
414 base::Time::Now().ToTimeT(),
415 scoped_ptr<tabs::Tab>(),
416 window.Pass()));
417 return true;
418 }
419
420 bool SessionsRestoreFunction::RestoreMostRecentlyClosed(Browser* browser) {
421 TabRestoreService* tab_restore_service =
422 TabRestoreServiceFactory::GetForProfile(profile());
423 chrome::HostDesktopType host_desktop_type = browser->host_desktop_type();
424 TabRestoreService::Entries entries = tab_restore_service->entries();
425
426 if (entries.empty()) {
427 SetError(kNoRecentlyClosedSessionsError);
428 return false;
429 }
430
431 bool is_window = is_window_entry(entries.front());
432 TabRestoreServiceDelegate* delegate =
433 TabRestoreServiceDelegate::FindDelegateForWebContents(
434 browser->tab_strip_model()->GetActiveWebContents());
435 std::vector<content::WebContents*> contents =
436 tab_restore_service->RestoreMostRecentEntry(delegate, host_desktop_type);
437 DCHECK(contents.size());
438
439 if (is_window) {
440 return SetResultRestoredWindow(
441 ExtensionTabUtil::GetWindowIdOfTab(contents[0]));
442 }
443
444 SetResultRestoredTab(contents[0]);
445 return true;
446 }
447
448 bool SessionsRestoreFunction::RestoreLocalSession(const SessionId& session_id,
449 Browser* browser) {
450 TabRestoreService* tab_restore_service =
451 TabRestoreServiceFactory::GetForProfile(profile());
452 chrome::HostDesktopType host_desktop_type = browser->host_desktop_type();
453 TabRestoreService::Entries entries = tab_restore_service->entries();
454
455 if (entries.empty()) {
456 SetInvalidIdError(session_id.ToString());
457 return false;
458 }
459
460 // Check if the recently closed list contains an entry with the provided id.
461 bool is_window = false;
462 for (TabRestoreService::Entries::iterator it = entries.begin();
463 it != entries.end(); ++it) {
464 if ((*it)->id == session_id.id()) {
465 // The only time a full window is being restored is if the entry ID
466 // matches the provided ID and the entry type is Window.
467 is_window = is_window_entry(*it);
468 break;
469 }
470 }
471
472 TabRestoreServiceDelegate* delegate =
473 TabRestoreServiceDelegate::FindDelegateForWebContents(
474 browser->tab_strip_model()->GetActiveWebContents());
475 std::vector<content::WebContents*> contents =
476 tab_restore_service->RestoreEntryById(delegate,
477 session_id.id(),
478 host_desktop_type,
479 UNKNOWN);
480 // If the ID is invalid, contents will be empty.
481 if (!contents.size()) {
482 SetInvalidIdError(session_id.ToString());
483 return false;
484 }
485
486 // Retrieve the window through any of the tabs in contents.
487 if (is_window) {
488 return SetResultRestoredWindow(
489 ExtensionTabUtil::GetWindowIdOfTab(contents[0]));
490 }
491
492 SetResultRestoredTab(contents[0]);
493 return true;
494 }
495
496 bool SessionsRestoreFunction::RestoreForeignSession(const SessionId& session_id,
497 Browser* browser) {
498 ProfileSyncService* service =
499 ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile());
500 if (!(service && service->GetPreferredDataTypes().Has(syncer::SESSIONS))) {
501 SetError(kSessionSyncError);
502 return false;
503 }
504 browser_sync::SessionModelAssociator* associator =
505 service->GetSessionModelAssociator();
506 if (!associator) {
507 SetError(kSessionSyncError);
508 return false;
509 }
510
511 const SessionTab* tab = NULL;
512 if (associator->GetForeignTab(session_id.session_tag(),
513 session_id.id(),
514 &tab)) {
515 TabStripModel* tab_strip = browser->tab_strip_model();
516 content::WebContents* contents = tab_strip->GetActiveWebContents();
517
518 content::WebContents* tab_contents =
519 SessionRestore::RestoreForeignSessionTab(contents, *tab,
520 NEW_FOREGROUND_TAB);
521 SetResultRestoredTab(tab_contents);
522 return true;
523 }
524
525 // Restoring a full window.
526 std::vector<const SessionWindow*> windows;
527 if (!associator->GetForeignSession(session_id.session_tag(), &windows)) {
528 SetInvalidIdError(session_id.ToString());
529 return false;
530 }
531
532 std::vector<const SessionWindow*>::const_iterator window = windows.begin();
533 while (window != windows.end()
534 && (*window)->window_id.id() != session_id.id()) {
535 ++window;
536 }
537 if (window == windows.end()) {
538 SetInvalidIdError(session_id.ToString());
539 return false;
540 }
541
542 chrome::HostDesktopType host_desktop_type = browser->host_desktop_type();
543 // Only restore one window at a time.
544 std::vector<Browser*> browsers =
545 SessionRestore::RestoreForeignSessionWindows(profile(), host_desktop_type,
546 window, window + 1);
547 // Will always create one browser because we only restore one window per call.
548 DCHECK_EQ(1u, browsers.size());
549 return SetResultRestoredWindow(ExtensionTabUtil::GetWindowId(browsers[0]));
550 }
551
552 bool SessionsRestoreFunction::RunImpl() {
553 scoped_ptr<Restore::Params> params(Restore::Params::Create(*args_));
554 EXTENSION_FUNCTION_VALIDATE(params);
555
556 Browser* browser =
557 chrome::FindBrowserWithProfile(profile(),
558 chrome::HOST_DESKTOP_TYPE_NATIVE);
559 if (!browser) {
560 SetError(kNoBrowserToRestoreSession);
561 return false;
562 }
563
564 if (!params->session_id)
565 return RestoreMostRecentlyClosed(browser);
566
567 scoped_ptr<SessionId> session_id(SessionId::Parse(*params->session_id));
568 if (!session_id) {
569 SetInvalidIdError(*params->session_id);
570 return false;
571 }
572
573 return session_id->IsForeign() ?
574 RestoreForeignSession(*session_id, browser)
575 : RestoreLocalSession(*session_id, browser);
576 }
577
578 SessionsAPI::SessionsAPI(Profile* profile) {
579 }
580
581 SessionsAPI::~SessionsAPI() {
582 }
583
584 static base::LazyInstance<ProfileKeyedAPIFactory<SessionsAPI> >
585 g_factory = LAZY_INSTANCE_INITIALIZER;
586
587 // static
588 ProfileKeyedAPIFactory<SessionsAPI>*
589 SessionsAPI::GetFactoryInstance() {
590 return &g_factory.Get();
591 }
592
593 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/sessions/sessions_api.h ('k') | chrome/browser/extensions/api/sessions/sessions_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698