| Index: chrome/renderer/translate/translate_helper.h
|
| diff --git a/chrome/renderer/translate/translate_helper.h b/chrome/renderer/translate/translate_helper.h
|
| index 3b7273f3725ac4b8c64ac93d4f3821fd55cbbdb6..76612f4e3e179527f8c49de7ea11953685173cf8 100644
|
| --- a/chrome/renderer/translate/translate_helper.h
|
| +++ b/chrome/renderer/translate/translate_helper.h
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/common/translate/translate_errors.h"
|
| #include "content/public/renderer/render_view_observer.h"
|
|
|
| -namespace WebKit {
|
| +namespace blink {
|
| class WebDocument;
|
| class WebFrame;
|
| }
|
| @@ -106,7 +106,7 @@ class TranslateHelper : public content::RenderViewObserver {
|
| // Returns whether the page associated with |document| is a candidate for
|
| // translation. Some pages can explictly specify (via a meta-tag) that they
|
| // should not be translated.
|
| - static bool IsTranslationAllowed(WebKit::WebDocument* document);
|
| + static bool IsTranslationAllowed(blink::WebDocument* document);
|
|
|
| // RenderViewObserver implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| @@ -130,7 +130,7 @@ class TranslateHelper : public content::RenderViewObserver {
|
|
|
| // Convenience method to access the main frame. Can return NULL, typically
|
| // if the page is being closed.
|
| - WebKit::WebFrame* GetMainFrame();
|
| + blink::WebFrame* GetMainFrame();
|
|
|
| // ID to represent a page which TranslateHelper captured and determined a
|
| // content language.
|
|
|