summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/automation_messages_internal.h4
-rw-r--r--chrome/common/chrome_notification_types.h12
-rw-r--r--chrome/common/render_messages.h2
3 files changed, 9 insertions, 9 deletions
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h
index 9ad3b69..1ce31a0 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -399,11 +399,11 @@ IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_NavigateInExternalTab,
// It is a notification that the NavigationState was changed
// Request:
// -int: The flags specifying what changed
-// (see TabContents::InvalidateTypes)
+// (see content::InvalidateTypes)
// Response:
// None expected
IPC_MESSAGE_ROUTED2(AutomationMsg_NavigationStateChanged,
- int, // TabContents::InvalidateTypes
+ int, // content::InvalidateTypes
NavigationInfo) // title, url etc.
// This message is an outgoing message from Chrome to an external host.
diff --git a/chrome/common/chrome_notification_types.h b/chrome/common/chrome_notification_types.h
index a42adf7..1e67e8b 100644
--- a/chrome/common/chrome_notification_types.h
+++ b/chrome/common/chrome_notification_types.h
@@ -126,8 +126,9 @@ enum NotificationType {
// MetricEventDurationDetails.
NOTIFICATION_METRIC_EVENT_DURATION,
- // This notification is sent when TabContents::SetAppExtension is invoked.
- // The source is the ExtensionTabHelper SetAppExtension was invoked on.
+ // This notification is sent when ExtensionTabHelper::SetExtensionApp is
+ // invoked. The source is the ExtensionTabHelper SetExtensionApp was invoked
+ // on.
NOTIFICATION_TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED,
// Notification posted when the element that is focused and currently accepts
@@ -161,10 +162,9 @@ enum NotificationType {
NOTIFICATION_BOOKMARK_BUBBLE_HIDDEN,
// This notification is sent when the result of a find-in-page search is
- // available with the browser process. The source is a Source<TabContents>
- // with a pointer to the TabContents. Details encompass a
- // FindNotificationDetail object that tells whether the match was found or
- // not found.
+ // available with the browser process. The source is a Source<WebContents>.
+ // Details encompass a FindNotificationDetail object that tells whether the
+ // match was found or not found.
NOTIFICATION_FIND_RESULT_AVAILABLE,
// Sent just before the installation confirm dialog is shown. The source
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 7d02ac4..6ac36c2 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -347,7 +347,7 @@ IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS)
IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial)
//-----------------------------------------------------------------------------
-// TabContents messages
+// Misc messages
// These are messages sent from the renderer to the browser process.
// Provides the contents for the given page that was loaded recently.