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

Unified Diff: chrome/browser/automation/automation_provider_mac.mm

Issue 661178: Continue removing bad dependency of chrome/common on chrome/browser... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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/automation/automation_provider_mac.mm
===================================================================
--- chrome/browser/automation/automation_provider_mac.mm (revision 40221)
+++ chrome/browser/automation/automation_provider_mac.mm (working copy)
@@ -5,9 +5,15 @@
#include "chrome/browser/automation/automation_provider.h"
#import <Cocoa/Cocoa.h>
+
+#include "app/l10n_util.h"
+#include "app/l10n_util_mac.h"
#include "base/gfx/point.h"
#include "base/gfx/rect.h"
+#include "base/sys_string_conversions.h"
+#include "chrome/browser/cocoa/tab_window_controller.h"
#include "chrome/test/automation/automation_messages.h"
+#include "grit/generated_resources.h"
void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds,
bool* success) {
@@ -138,3 +144,24 @@
*result = false;
NOTIMPLEMENTED();
}
+
+void AutomationProvider::GetWindowTitle(int handle, string16* text) {
+ gfx::NativeWindow window = window_tracker_->GetResource(handle);
+ NSString* title = nil;
+ if ([[window delegate] isKindOfClass:[TabWindowController class]]) {
+ TabWindowController* delegate =
+ reinterpret_cast<TabWindowController*>([window delegate]);
+ title = [delegate selectedTabTitle];
+ } else {
+ title = [window title];
+ }
+ // If we don't yet have a title, use "Untitled".
+ if (![title length]) {
+ text->assign(WideToUTF16(l10n_util::GetString(
+ IDS_BROWSER_WINDOW_MAC_TAB_UNTITLED)));
+ return;
+ }
+
+ text->assign(base::SysNSStringToUTF16(title));
+}
+
« no previous file with comments | « chrome/browser/automation/automation_provider_gtk.cc ('k') | chrome/browser/automation/automation_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698