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

Unified Diff: components/translate/core/browser/translate_client.h

Issue 378253002: Fix translate namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing android build errors Created 6 years, 5 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: components/translate/core/browser/translate_client.h
diff --git a/components/translate/core/browser/translate_client.h b/components/translate/core/browser/translate_client.h
index 38fcdea97e69b23a062a62ba2aa0b37e92fb3e87..306f4cc573173d5d07518bc865e3d4bb3b4416f6 100644
--- a/components/translate/core/browser/translate_client.h
+++ b/components/translate/core/browser/translate_client.h
@@ -15,14 +15,17 @@
class GURL;
class PrefService;
-class TranslateAcceptLanguages;
-class TranslateDriver;
-class TranslateInfoBarDelegate;
namespace infobars {
class InfoBar;
}
+namespace translate {
+
+class TranslateAcceptLanguages;
+class TranslateDriver;
+class TranslateInfoBarDelegate;
+
// A client interface that needs to be supplied to TranslateManager by the
// embedder.
//
@@ -66,4 +69,6 @@ class TranslateClient {
virtual void ShowReportLanguageDetectionErrorUI(const GURL& report_url) = 0;
};
+} // namespace translate
+
#endif // COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698