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/bookmarks/browser/scoped_group_bookmark_actions.h"
7 #include "components/bookmarks/browser/bookmark_model.h"
11 ScopedGroupBookmarkActions::ScopedGroupBookmarkActions(BookmarkModel
* model
)
14 model_
->BeginGroupedChanges();
17 ScopedGroupBookmarkActions::~ScopedGroupBookmarkActions() {
19 model_
->EndGroupedChanges();
22 } // namespace bookmarks