Index: chrome/common/render_messages.h |
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h |
index 45c90566324e4844abea2006f8331e22fb0ae874..be5e922877c9c3df98a32982a584c630bda1dee0 100644 |
--- a/chrome/common/render_messages.h |
+++ b/chrome/common/render_messages.h |
@@ -28,7 +28,6 @@ |
#include "content/public/common/common_param_traits.h" |
#include "content/public/common/referrer.h" |
#include "content/public/common/top_controls_state.h" |
-#include "extensions/common/stack_frame.h" |
#include "ipc/ipc_channel_handle.h" |
#include "ipc/ipc_message_macros.h" |
#include "ipc/ipc_platform_file.h" |
@@ -185,13 +184,6 @@ IPC_STRUCT_TRAITS_BEGIN(blink::WebCache::UsageStats) |
IPC_STRUCT_TRAITS_MEMBER(deadSize) |
IPC_STRUCT_TRAITS_END() |
-IPC_STRUCT_TRAITS_BEGIN(extensions::StackFrame) |
- IPC_STRUCT_TRAITS_MEMBER(line_number) |
- IPC_STRUCT_TRAITS_MEMBER(column_number) |
- IPC_STRUCT_TRAITS_MEMBER(source) |
- IPC_STRUCT_TRAITS_MEMBER(function) |
-IPC_STRUCT_TRAITS_END() |
- |
IPC_ENUM_TRAITS_MAX_VALUE(NTPLoggingEventType, |
NTP_NUM_EVENT_TYPES) |
@@ -209,12 +201,6 @@ IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities, |
IPC_MESSAGE_CONTROL1(ChromeViewMsg_ClearCache, |
bool /* on_navigation */) |
-#if defined(ENABLE_EXTENSIONS) |
-// Set the top-level frame to the provided name. |
-IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetName, |
- std::string /* frame_name */) |
-#endif |
- |
#if !defined(OS_ANDROID) && !defined(OS_IOS) |
// For WebUI testing, this message requests JavaScript to be executed at a time |
// which is late enough to not be thrown out, and early enough to be before |
@@ -282,13 +268,6 @@ IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, |
IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch) |
-#if defined(ENABLE_EXTENSIONS) |
-// Toggles visual muting of the render view area. This is on when a constrained |
-// window is showing. |
-IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
- bool /* deemphazied */) |
-#endif |
- |
// Sent on process startup to indicate whether this process is running in |
// incognito mode. |
IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, |
@@ -466,13 +445,6 @@ IPC_SYNC_MESSAGE_CONTROL1_3( |
std::vector<base::string16> /* additional_param_values */) |
#endif |
-#if defined(ENABLE_EXTENSIONS) |
-// Informs the browser of updated frame names. |
-IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_UpdateFrameName, |
- bool /* is_top_level */, |
- std::string /* name */) |
-#endif |
- |
#if defined(ENABLE_PLUGIN_INSTALLATION) |
// Tells the browser to search for a plug-in that can handle the given MIME |
// type. The result will be sent asynchronously to the routing ID |
@@ -577,17 +549,6 @@ IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_ResourceTypeStats, |
// only when the renderer is prerendering. |
IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) |
-#if defined(ENABLE_EXTENSIONS) |
-// Sent by the renderer to check if a URL has permission to trigger a clipboard |
-// read/write operation from the DOM. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
- GURL /* origin */, |
- bool /* allowed */) |
-IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
- GURL /* origin */, |
- bool /* allowed */) |
-#endif |
- |
// Sent when the renderer was prevented from displaying insecure content in |
// a secure page by a security policy. The page may appear incomplete. |
IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
@@ -710,17 +671,6 @@ IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
std::vector<GURL> /* search_urls */, |
GURL /* new_tab_page_url */) |
-// TODO(thestig) Eventually separate out all the extensions messages. |
-#if defined(ENABLE_EXTENSIONS) |
-// Tells listeners that a detailed message was reported to the console by |
-// WebKit. |
-IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
- base::string16 /* message */, |
- base::string16 /* source */, |
- extensions::StackTrace /* stack trace */, |
- int32 /* severity level */) |
-#endif |
- |
#if defined(ENABLE_PLUGINS) |
// Sent by the renderer to check if crash reporting is enabled. |
IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |