| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | |
| 10 | |
| 11 #include "app/menus/simple_menu_model.h" | 9 #include "app/menus/simple_menu_model.h" |
| 12 #include "app/tree_node_model.h" | 10 #include "app/tree_node_model.h" |
| 13 #include "chrome/browser/bookmarks/bookmark_editor.h" | 11 #include "chrome/browser/bookmarks/bookmark_editor.h" |
| 14 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 12 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 15 #include "views/controls/button/button.h" | 13 #include "views/controls/button/button.h" |
| 16 #include "views/controls/textfield/textfield.h" | 14 #include "views/controls/textfield/textfield.h" |
| 17 #include "views/controls/tree/tree_view.h" | 15 #include "views/controls/tree/tree_view.h" |
| 18 #include "views/window/dialog_delegate.h" | 16 #include "views/window/dialog_delegate.h" |
| 19 #include "testing/gtest/include/gtest/gtest_prod.h" | 17 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 20 | 18 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 // nodes. | 255 // nodes. |
| 258 bool running_menu_for_root_; | 256 bool running_menu_for_root_; |
| 259 | 257 |
| 260 // Is the tree shown? | 258 // Is the tree shown? |
| 261 bool show_tree_; | 259 bool show_tree_; |
| 262 | 260 |
| 263 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); | 261 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); |
| 264 }; | 262 }; |
| 265 | 263 |
| 266 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H_ | 264 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_EDITOR_VIEW_H_ |
| OLD | NEW |