Home | History | Annotate | Download | only in bookmarks
      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 
      9 BookmarkEditor::EditDetails::EditDetails()
     10     : type(NEW_URL),
     11       existing_node(NULL) {
     12 }
     13 
     14 BookmarkEditor::EditDetails::EditDetails(const BookmarkNode* node)
     15     : type(EXISTING_NODE),
     16       existing_node(node) {
     17 }
     18 
     19 BookmarkEditor::EditDetails::~EditDetails() {
     20 }
     21