| Index: chrome/browser/sessions/session_service.h
|
| diff --git a/chrome/browser/sessions/session_service.h b/chrome/browser/sessions/session_service.h
|
| index e6feffd1f400847d0218bdb2b953040c5842354c..aaeada0db62e49fffa36f316ec0ee61fa5f5993a 100644
|
| --- a/chrome/browser/sessions/session_service.h
|
| +++ b/chrome/browser/sessions/session_service.h
|
| @@ -186,10 +186,12 @@ class SessionService : public BaseSessionService,
|
| // These types mirror Browser::Type, but are re-defined here because these
|
| // specific enumeration _values_ are written into the session database and
|
| // are needed to maintain forward compatibility.
|
| - // Note that we only store browsers of type TYPE_TABBED and TYPE_POPUP.
|
| + // Note that we only store browsers of type TYPE_TABBED, TYPE_POPUP,
|
| + // and TYPE_APP.
|
| enum WindowType {
|
| TYPE_TABBED = 0,
|
| - TYPE_POPUP = 1
|
| + TYPE_POPUP = 1,
|
| + TYPE_APP = 2
|
| };
|
|
|
| void Init();
|
|
|