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

Unified Diff: chrome/browser/gtk/accessible_widget_helper_gtk.cc

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
« no previous file with comments | « chrome/browser/gtk/accessible_widget_helper_gtk.h ('k') | chrome/browser/gtk/back_forward_button_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/accessible_widget_helper_gtk.cc
===================================================================
--- chrome/browser/gtk/accessible_widget_helper_gtk.cc (revision 71352)
+++ chrome/browser/gtk/accessible_widget_helper_gtk.cc (working copy)
@@ -1,66 +0,0 @@
-// Copyright (c) 2010 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.
-
-#include "chrome/browser/gtk/accessible_widget_helper_gtk.h"
-
-#include "app/l10n_util.h"
-#include "chrome/browser/accessibility_events.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/common/notification_service.h"
-
-AccessibleWidgetHelper::AccessibleWidgetHelper(
- GtkWidget* root_widget, Profile* profile)
- : accessibility_event_router_(AccessibilityEventRouterGtk::GetInstance()),
- profile_(profile),
- root_widget_(root_widget) {
- CHECK(profile_);
- accessibility_event_router_->AddRootWidget(root_widget_, profile_);
-}
-
-AccessibleWidgetHelper::~AccessibleWidgetHelper() {
- if (!window_title_.empty()) {
- AccessibilityWindowInfo info(profile_, window_title_);
- NotificationService::current()->Notify(
- NotificationType::ACCESSIBILITY_WINDOW_CLOSED,
- Source<Profile>(profile_),
- Details<AccessibilityWindowInfo>(&info));
- }
-
- if (root_widget_)
- accessibility_event_router_->RemoveRootWidget(root_widget_);
- for (std::set<GtkWidget*>::iterator it = managed_widgets_.begin();
- it != managed_widgets_.end();
- ++it) {
- accessibility_event_router_->RemoveWidgetNameOverride(*it);
- }
-}
-
-void AccessibleWidgetHelper::SendOpenWindowNotification(
- const std::string& window_title) {
- window_title_ = window_title;
- AccessibilityWindowInfo info(profile_, window_title);
- NotificationService::current()->Notify(
- NotificationType::ACCESSIBILITY_WINDOW_OPENED,
- Source<Profile>(profile_),
- Details<AccessibilityWindowInfo>(&info));
-}
-
-void AccessibleWidgetHelper::SetWidgetName(
- GtkWidget* widget, std::string name) {
- if (managed_widgets_.find(widget) != managed_widgets_.end()) {
- // AccessibilityEventRouterGtk reference-counts its widgets, but we
- // don't. In order to avoid a memory leak, tell the event router
- // to deref first, so the resulting refcount is unchanged after we
- // call SetWidgetName.
- accessibility_event_router_->RemoveWidgetNameOverride(widget);
- }
-
- accessibility_event_router_->AddWidgetNameOverride(widget, name);
- managed_widgets_.insert(widget);
-}
-
-void AccessibleWidgetHelper::SetWidgetName(
- GtkWidget* widget, int string_id) {
- SetWidgetName(widget, l10n_util::GetStringUTF8(string_id));
-}
« no previous file with comments | « chrome/browser/gtk/accessible_widget_helper_gtk.h ('k') | chrome/browser/gtk/back_forward_button_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698