| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 virtual ~BookmarkEditorView(); | 78 virtual ~BookmarkEditorView(); |
| 79 | 79 |
| 80 // views::DialogDelegateView: | 80 // views::DialogDelegateView: |
| 81 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; | 81 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; |
| 82 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; | 82 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; |
| 83 virtual ui::ModalType GetModalType() const OVERRIDE; | 83 virtual ui::ModalType GetModalType() const OVERRIDE; |
| 84 virtual bool CanResize() const OVERRIDE; | 84 virtual bool CanResize() const OVERRIDE; |
| 85 virtual string16 GetWindowTitle() const OVERRIDE; | 85 virtual string16 GetWindowTitle() const OVERRIDE; |
| 86 virtual bool Accept() OVERRIDE; | 86 virtual bool Accept() OVERRIDE; |
| 87 virtual bool AreAcceleratorsEnabled(ui::DialogButton button) OVERRIDE; | 87 virtual bool AreAcceleratorsEnabled(ui::DialogButton button) OVERRIDE; |
| 88 virtual views::View* GetContentsView() OVERRIDE; | |
| 89 | 88 |
| 90 // views::View: | 89 // views::View: |
| 91 virtual void Layout() OVERRIDE; | 90 virtual void Layout() OVERRIDE; |
| 92 virtual gfx::Size GetPreferredSize() OVERRIDE; | 91 virtual gfx::Size GetPreferredSize() OVERRIDE; |
| 93 virtual void ViewHierarchyChanged(bool is_add, | 92 virtual void ViewHierarchyChanged(bool is_add, |
| 94 views::View* parent, | 93 views::View* parent, |
| 95 views::View* child) OVERRIDE; | 94 views::View* child) OVERRIDE; |
| 96 | 95 |
| 97 // views::TreeViewController: | 96 // views::TreeViewController: |
| 98 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; | 97 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 // Is the tree shown? | 265 // Is the tree shown? |
| 267 bool show_tree_; | 266 bool show_tree_; |
| 268 | 267 |
| 269 // List of deleted bookmark folders. | 268 // List of deleted bookmark folders. |
| 270 std::vector<int64> deletes_; | 269 std::vector<int64> deletes_; |
| 271 | 270 |
| 272 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); | 271 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); |
| 273 }; | 272 }; |
| 274 | 273 |
| 275 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ | 274 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ |
| OLD | NEW |