Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Unified Diff: chrome/browser/extensions/api/tabs/tabs_api.h

Issue 14622003: components: Move PrefRegistrySyncable into user_prefs namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/tabs/tabs_api.h
diff --git a/chrome/browser/extensions/api/tabs/tabs_api.h b/chrome/browser/extensions/api/tabs/tabs_api.h
index 5df900ac99611045078b0c605db02c937c66f072..bdb062a2a8c9e47f572ed193c22c473a1f7b649a 100644
--- a/chrome/browser/extensions/api/tabs/tabs_api.h
+++ b/chrome/browser/extensions/api/tabs/tabs_api.h
@@ -18,7 +18,6 @@
class BackingStore;
class GURL;
-class PrefRegistrySyncable;
class SkBitmap;
namespace base {
@@ -37,6 +36,10 @@ struct InjectDetails;
} // namespace api
} // namespace extensions
+namespace user_prefs {
+class PrefRegistrySyncable;
+}
+
// Windows
class WindowsGetFunction : public SyncExtensionFunction {
virtual ~WindowsGetFunction() {}
@@ -176,7 +179,7 @@ class TabsDetectLanguageFunction : public AsyncExtensionFunction,
};
class TabsCaptureVisibleTabFunction : public AsyncExtensionFunction {
public:
- static void RegisterUserPrefs(PrefRegistrySyncable* registry);
+ static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
protected:
enum ImageFormat {

Powered by Google App Engine
This is Rietveld 408576698