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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_TRANSLATE_TRANSLATE_BUBBLE_FACTORY_H_ 5 #ifndef CHROME_BROWSER_UI_TRANSLATE_TRANSLATE_BUBBLE_FACTORY_H_
6 #define CHROME_BROWSER_UI_TRANSLATE_TRANSLATE_BUBBLE_FACTORY_H_ 6 #define CHROME_BROWSER_UI_TRANSLATE_TRANSLATE_BUBBLE_FACTORY_H_
7 7
8 #include "chrome/browser/translate/chrome_translate_client.h" 8 #include "chrome/browser/translate/chrome_translate_client.h"
9 #include "chrome/browser/ui/translate/translate_bubble_model.h" 9 #include "chrome/browser/ui/translate/translate_bubble_model.h"
10 #include "components/translate/core/common/translate_errors.h" 10 #include "components/translate/core/common/translate_errors.h"
11 11
12 class BrowserWindow; 12 class BrowserWindow;
13 13
14 namespace content { 14 namespace content {
15 class WebContents; 15 class WebContents;
16 } 16 }
17 17
18 // Factory to show the Translate bubble. 18 // Factory to show the Translate bubble.
19 class TranslateBubbleFactory { 19 class TranslateBubbleFactory {
20 public: 20 public:
21 virtual ~TranslateBubbleFactory(); 21 virtual ~TranslateBubbleFactory();
22 22
23 // Shows the translate bubble. The behavior depends on the current factory's 23 // Shows the translate bubble. The behavior depends on the current factory's
24 // implementation. 24 // implementation.
25 static void Show(BrowserWindow* window, 25 static void Show(BrowserWindow* window,
26 content::WebContents* web_contents, 26 content::WebContents* web_contents,
27 translate::TranslateStep step, 27 translate::TranslateStep step,
28 TranslateErrors::Type error_type); 28 translate::TranslateErrors::Type error_type);
29 29
30 // Sets the factory to change the behavior how to show the bubble. 30 // Sets the factory to change the behavior how to show the bubble.
31 // TranslateBubbleFactory doesn't take the ownership of |factory|. 31 // TranslateBubbleFactory doesn't take the ownership of |factory|.
32 static void SetFactory(TranslateBubbleFactory* factory); 32 static void SetFactory(TranslateBubbleFactory* factory);
33 33
34 protected: 34 protected:
35 // Shows the translate bubble. 35 // Shows the translate bubble.
36 virtual void ShowImplementation(BrowserWindow* window, 36 virtual void ShowImplementation(
37 content::WebContents* web_contents, 37 BrowserWindow* window,
38 translate::TranslateStep step, 38 content::WebContents* web_contents,
39 TranslateErrors::Type error_type) = 0; 39 translate::TranslateStep step,
40 translate::TranslateErrors::Type error_type) = 0;
40 41
41 private: 42 private:
42 static TranslateBubbleFactory* current_factory_; 43 static TranslateBubbleFactory* current_factory_;
43 }; 44 };
44 45
45 #endif // CHROME_BROWSER_UI_TRANSLATE_TRANSLATE_BUBBLE_FACTORY_H_ 46 #endif // CHROME_BROWSER_UI_TRANSLATE_TRANSLATE_BUBBLE_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698