Makes the view manager client lib remove children when embedding
[chromium-blink-merge.git] / components / sessions / session_id.cc
blob6999a2a20105fa16cb493c1359d3274d4c09f3a9
1 // Copyright 2014 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.
5 #include "components/sessions/session_id.h"
7 static SessionID::id_type next_id = 1;
9 SessionID::SessionID() {
10 id_ = next_id++;