| 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_EXTENSIONS_MENU_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_MENU_MANAGER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_MENU_MANAGER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_MENU_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "base/string16.h" | 18 #include "base/string16.h" |
| 19 #include "base/values.h" | 19 #include "base/values.h" |
| 20 #include "chrome/browser/extensions/extension_icon_manager.h" | 20 #include "chrome/browser/extensions/extension_icon_manager.h" |
| 21 #include "chrome/common/extensions/url_pattern_set.h" | |
| 22 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
| 23 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
| 23 #include "extensions/common/url_pattern_set.h" |
| 24 | 24 |
| 25 | 25 |
| 26 class Profile; | 26 class Profile; |
| 27 class SkBitmap; | 27 class SkBitmap; |
| 28 | 28 |
| 29 namespace content { | 29 namespace content { |
| 30 class WebContents; | 30 class WebContents; |
| 31 struct ContextMenuParams; | 31 struct ContextMenuParams; |
| 32 } | 32 } |
| 33 | 33 |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 ExtensionIconManager icon_manager_; | 349 ExtensionIconManager icon_manager_; |
| 350 | 350 |
| 351 Profile* profile_; | 351 Profile* profile_; |
| 352 | 352 |
| 353 DISALLOW_COPY_AND_ASSIGN(MenuManager); | 353 DISALLOW_COPY_AND_ASSIGN(MenuManager); |
| 354 }; | 354 }; |
| 355 | 355 |
| 356 } // namespace extensions | 356 } // namespace extensions |
| 357 | 357 |
| 358 #endif // CHROME_BROWSER_EXTENSIONS_MENU_MANAGER_H_ | 358 #endif // CHROME_BROWSER_EXTENSIONS_MENU_MANAGER_H_ |
| OLD | NEW |