| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H__ |
| 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H__ | 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H__ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "chrome/views/tree_node_model.h" | 10 #include "chrome/views/tree_node_model.h" |
| 11 #include "chrome/browser/bookmark_bar_model.h" | 11 #include "chrome/browser/bookmarks/bookmark_bar_model.h" |
| 12 #include "chrome/views/checkbox.h" | 12 #include "chrome/views/checkbox.h" |
| 13 #include "chrome/views/dialog_delegate.h" | 13 #include "chrome/views/dialog_delegate.h" |
| 14 #include "chrome/views/menu.h" | 14 #include "chrome/views/menu.h" |
| 15 #include "chrome/views/native_button.h" | 15 #include "chrome/views/native_button.h" |
| 16 #include "chrome/views/text_field.h" | 16 #include "chrome/views/text_field.h" |
| 17 | 17 |
| 18 namespace ChromeViews { | 18 namespace ChromeViews { |
| 19 class Window; | 19 class Window; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 | 248 |
| 249 // If true, we're running the menu for the bookmark bar or other bookmarks | 249 // If true, we're running the menu for the bookmark bar or other bookmarks |
| 250 // nodes. | 250 // nodes. |
| 251 bool running_menu_for_root_; | 251 bool running_menu_for_root_; |
| 252 | 252 |
| 253 DISALLOW_EVIL_CONSTRUCTORS(BookmarkEditorView); | 253 DISALLOW_EVIL_CONSTRUCTORS(BookmarkEditorView); |
| 254 }; | 254 }; |
| 255 | 255 |
| 256 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H__ | 256 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H__ |
| 257 | 257 |
| OLD | NEW |