| 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_;
|
|
|