OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_EXTENSION_WEB_UI_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/bookmarks/bookmark_manager_extension_api.h" | 11 #include "chrome/browser/bookmarks/bookmark_manager_extension_api.h" |
13 #include "chrome/browser/favicon/favicon_service.h" | 12 #include "chrome/browser/favicon/favicon_service.h" |
14 #include "chrome/common/extensions/extension.h" | 13 #include "chrome/common/extensions/extension.h" |
15 #include "content/public/browser/web_ui_controller.h" | 14 #include "content/public/browser/web_ui_controller.h" |
16 | 15 |
17 class PrefService; | 16 class PrefService; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // TODO(aa): This seems out of place. Why is it not with the event routers for | 67 // TODO(aa): This seems out of place. Why is it not with the event routers for |
69 // the other extension APIs? | 68 // the other extension APIs? |
70 scoped_ptr<BookmarkManagerExtensionEventRouter> | 69 scoped_ptr<BookmarkManagerExtensionEventRouter> |
71 bookmark_manager_extension_event_router_; | 70 bookmark_manager_extension_event_router_; |
72 | 71 |
73 // The URL this WebUI was created for. | 72 // The URL this WebUI was created for. |
74 GURL url_; | 73 GURL url_; |
75 }; | 74 }; |
76 | 75 |
77 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ | 76 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ |
OLD | NEW |