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

Unified Diff: chrome/browser/ui/cocoa/translate/translate_bubble_controller.h

Issue 151283006: Mac OS X: Show the Translate icon on Omnibox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue-307352-translate-bubble-2
Patch Set: (rebasing) Created 6 years, 10 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/cocoa/translate/translate_bubble_controller.h
diff --git a/chrome/browser/ui/cocoa/translate/translate_bubble_controller.h b/chrome/browser/ui/cocoa/translate/translate_bubble_controller.h
new file mode 100644
index 0000000000000000000000000000000000000000..d65f159c58f516d134e4d0f7656b963be5c92535
--- /dev/null
+++ b/chrome/browser/ui/cocoa/translate/translate_bubble_controller.h
@@ -0,0 +1,42 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import <Cocoa/Cocoa.h>
+
+#include "base/memory/scoped_ptr.h"
+#include "chrome/browser/translate/translate_tab_helper.h"
+#import "chrome/browser/ui/cocoa/base_bubble_controller.h"
+#include "components/translate/core/common/translate_errors.h"
+
+@class BrowserWindowController;
+
+class TranslateBubbleModel;
+
+namespace content {
+class WebContents;
+}
+
+// Displays the Translate bubble. The Translate bubble is a bubble which
+// pops up when clicking the Translate icon on Omnibox. This bubble
+// allows us to translate a foreign page into user-selected language,
+// revert this, and configure the translate setting.
+@interface TranslateBubbleController : BaseBubbleController {
+ @private
+ content::WebContents* webContents_;
+ scoped_ptr<TranslateBubbleModel> model_;
+
+ // Whether the translation is actually executed once at least.
+ BOOL translateExecuted_;
+}
+
+@property(readonly, nonatomic) const content::WebContents* webContents;
+@property(readonly, nonatomic) const TranslateBubbleModel* model;
+
+- (id)initWithParentWindow:(BrowserWindowController*)controller
+ model:(scoped_ptr<TranslateBubbleModel>)model
+ webContents:(content::WebContents*)webContents;
+- (void)switchView:(TranslateBubbleModel::ViewState)viewState;
+- (void)switchToErrorView:(TranslateErrors::Type)errorType;
+
+@end

Powered by Google App Engine
This is Rietveld 408576698