1// Copyright (c) 2010 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/bookmarks/bookmark_editor.h"
6
7#include "googleurl/src/gurl.h"
8
9BookmarkEditor::EditDetails::EditDetails()
10    : type(NEW_URL),
11      existing_node(NULL) {
12}
13
14BookmarkEditor::EditDetails::EditDetails(const BookmarkNode* node)
15    : type(EXISTING_NODE),
16      existing_node(node) {
17}
18
19BookmarkEditor::EditDetails::~EditDetails() {
20}
21