| 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_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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 // (e.g. { "newtab": "chrome-extension://<id>/my_new_tab.html" } | 53 // (e.g. { "newtab": "chrome-extension://<id>/my_new_tab.html" } |
| 54 static void RegisterChromeURLOverrides(Profile* profile, | 54 static void RegisterChromeURLOverrides(Profile* profile, |
| 55 const extensions::URLOverrides::URLOverrideMap& overrides); | 55 const extensions::URLOverrides::URLOverrideMap& overrides); |
| 56 static void UnregisterChromeURLOverrides(Profile* profile, | 56 static void UnregisterChromeURLOverrides(Profile* profile, |
| 57 const extensions::URLOverrides::URLOverrideMap& overrides); | 57 const extensions::URLOverrides::URLOverrideMap& overrides); |
| 58 static void UnregisterChromeURLOverride(const std::string& page, | 58 static void UnregisterChromeURLOverride(const std::string& page, |
| 59 Profile* profile, | 59 Profile* profile, |
| 60 const base::Value* override); | 60 const base::Value* override); |
| 61 | 61 |
| 62 // Called from BrowserPrefs | 62 // Called from BrowserPrefs |
| 63 static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry); | 63 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 64 | 64 |
| 65 // Get the favicon for the extension by getting an icon from the manifest. | 65 // Get the favicon for the extension by getting an icon from the manifest. |
| 66 // Note. |callback| is always run asynchronously. | 66 // Note. |callback| is always run asynchronously. |
| 67 static void GetFaviconForURL( | 67 static void GetFaviconForURL( |
| 68 Profile* profile, | 68 Profile* profile, |
| 69 const GURL& page_url, | 69 const GURL& page_url, |
| 70 const FaviconService::FaviconResultsCallback& callback); | 70 const FaviconService::FaviconResultsCallback& callback); |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 // Unregister the specified override, and if it's the currently active one, | 73 // Unregister the specified override, and if it's the currently active one, |
| 74 // ensure that something takes its place. | 74 // ensure that something takes its place. |
| 75 static void UnregisterAndReplaceOverride(const std::string& page, | 75 static void UnregisterAndReplaceOverride(const std::string& page, |
| 76 Profile* profile, | 76 Profile* profile, |
| 77 base::ListValue* list, | 77 base::ListValue* list, |
| 78 const base::Value* override); | 78 const base::Value* override); |
| 79 | 79 |
| 80 // TODO(aa): This seems out of place. Why is it not with the event routers for | 80 // TODO(aa): This seems out of place. Why is it not with the event routers for |
| 81 // the other extension APIs? | 81 // the other extension APIs? |
| 82 scoped_ptr<extensions::BookmarkManagerPrivateEventRouter> | 82 scoped_ptr<extensions::BookmarkManagerPrivateEventRouter> |
| 83 bookmark_manager_private_event_router_; | 83 bookmark_manager_private_event_router_; |
| 84 | 84 |
| 85 // The URL this WebUI was created for. | 85 // The URL this WebUI was created for. |
| 86 GURL url_; | 86 GURL url_; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ | 89 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEB_UI_H_ |
| OLD | NEW |