• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
EditDetails()9 BookmarkEditor::EditDetails::EditDetails()
10     : type(NEW_URL),
11       existing_node(NULL) {
12 }
13 
EditDetails(const BookmarkNode * node)14 BookmarkEditor::EditDetails::EditDetails(const BookmarkNode* node)
15     : type(EXISTING_NODE),
16       existing_node(node) {
17 }
18 
~EditDetails()19 BookmarkEditor::EditDetails::~EditDetails() {
20 }
21