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

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: 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..4b66fa70d32663e45e684722d7d771ba4030e112 100644
--- a/components/translate/core/browser/translate_client.h
+++ b/components/translate/core/browser/translate_client.h
@@ -15,14 +15,19 @@
class GURL;
class PrefService;
+
+namespace translate {
class TranslateAcceptLanguages;
droger 2014/07/09 07:52:43 Nit: Move these declarations around line 30, and r
nshaik 2014/07/09 08:56:51 Done.
class TranslateDriver;
class TranslateInfoBarDelegate;
+}
namespace infobars {
class InfoBar;
}
+namespace translate {
+
// A client interface that needs to be supplied to TranslateManager by the
// embedder.
//
@@ -66,4 +71,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