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

Unified Diff: chrome/browser/ui/translate/translate_bubble_factory.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: chrome/browser/ui/translate/translate_bubble_factory.h
diff --git a/chrome/browser/ui/translate/translate_bubble_factory.h b/chrome/browser/ui/translate/translate_bubble_factory.h
index b1b3b686f59de72e3849e3eb73f10e3245d482fc..16bf68151e9b0ad703689bc04dcc44356e7eb0da 100644
--- a/chrome/browser/ui/translate/translate_bubble_factory.h
+++ b/chrome/browser/ui/translate/translate_bubble_factory.h
@@ -25,7 +25,7 @@ class TranslateBubbleFactory {
static void Show(BrowserWindow* window,
content::WebContents* web_contents,
translate::TranslateStep step,
- TranslateErrors::Type error_type);
+ translate::TranslateErrors::Type error_type);
// Sets the factory to change the behavior how to show the bubble.
// TranslateBubbleFactory doesn't take the ownership of |factory|.
@@ -33,10 +33,11 @@ class TranslateBubbleFactory {
protected:
// Shows the translate bubble.
- virtual void ShowImplementation(BrowserWindow* window,
- content::WebContents* web_contents,
- translate::TranslateStep step,
- TranslateErrors::Type error_type) = 0;
+ virtual void ShowImplementation(
+ BrowserWindow* window,
+ content::WebContents* web_contents,
+ translate::TranslateStep step,
+ translate::TranslateErrors::Type error_type) = 0;
private:
static TranslateBubbleFactory* current_factory_;

Powered by Google App Engine
This is Rietveld 408576698