| 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_MENU_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/bookmarks/bookmark_node_data.h" | |
| 13 #include "chrome/browser/bookmarks/bookmark_stats.h" | 12 #include "chrome/browser/bookmarks/bookmark_stats.h" |
| 14 #include "chrome/browser/ui/views/bookmarks/bookmark_context_menu.h" | 13 #include "chrome/browser/ui/views/bookmarks/bookmark_context_menu.h" |
| 15 #include "components/bookmarks/core/browser/base_bookmark_model_observer.h" | 14 #include "components/bookmarks/core/browser/base_bookmark_model_observer.h" |
| 15 #include "components/bookmarks/core/browser/bookmark_node_data.h" |
| 16 #include "ui/views/controls/menu/menu_delegate.h" | 16 #include "ui/views/controls/menu/menu_delegate.h" |
| 17 | 17 |
| 18 class BookmarkNode; | 18 class BookmarkNode; |
| 19 class Browser; | 19 class Browser; |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class PageNavigator; | 23 class PageNavigator; |
| 24 } | 24 } |
| 25 | 25 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // Is the model being changed? | 201 // Is the model being changed? |
| 202 bool is_mutating_model_; | 202 bool is_mutating_model_; |
| 203 | 203 |
| 204 // The location where this bookmark menu will be displayed (for UMA). | 204 // The location where this bookmark menu will be displayed (for UMA). |
| 205 BookmarkLaunchLocation location_; | 205 BookmarkLaunchLocation location_; |
| 206 | 206 |
| 207 DISALLOW_COPY_AND_ASSIGN(BookmarkMenuDelegate); | 207 DISALLOW_COPY_AND_ASSIGN(BookmarkMenuDelegate); |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_DELEGATE_H_ | 210 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_DELEGATE_H_ |
| OLD | NEW |