| Index: chrome/browser/tab_contents/tab_contents_view_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents_view_gtk.cc (revision 91771)
|
| +++ chrome/browser/tab_contents/tab_contents_view_gtk.cc (working copy)
|
| @@ -99,7 +99,7 @@
|
| gtk_container_add(GTK_CONTAINER(floating_.get()), expanded_);
|
| gtk_widget_show(expanded_);
|
| gtk_widget_show(floating_.get());
|
| - registrar_.Add(this, NotificationType::TAB_CONTENTS_CONNECTED,
|
| + registrar_.Add(this, chrome::TAB_CONTENTS_CONNECTED,
|
| Source<TabContents>(tab_contents));
|
| drag_source_.reset(new TabContentsDragSource(this));
|
| }
|
| @@ -286,7 +286,7 @@
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| switch (type.value) {
|
| - case NotificationType::TAB_CONTENTS_CONNECTED: {
|
| + case chrome::TAB_CONTENTS_CONNECTED: {
|
| // No need to remove the SadTabGtk's widget from the container since
|
| // the new RenderWidgetHostViewGtk instance already removed all the
|
| // vbox's children.
|
|
|