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

Unified Diff: content/renderer/render_view.h

Issue 6683066: Remove render_messages_params files since they're not needed anymore. I moved the search provide... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 | « content/renderer/pepper_plugin_delegate_impl.cc ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view.h
===================================================================
--- content/renderer/render_view.h (revision 79639)
+++ content/renderer/render_view.h (working copy)
@@ -22,6 +22,7 @@
#include "base/timer.h"
#include "build/build_config.h"
#include "chrome/common/content_settings.h"
+#include "chrome/common/search_provider.h"
#include "chrome/common/view_types.h"
#include "chrome/renderer/page_load_histograms.h"
#include "content/renderer/renderer_webcookiejar_impl.h"
@@ -82,8 +83,6 @@
struct ExtensionMsg_ExecuteCode_Params;
struct PP_Flash_NetAddress;
struct ThumbnailScore;
-struct ViewHostMsg_GetSearchProviderInstallState_Params;
-struct ViewHostMsg_PageHasOSDD_Type;
struct ViewHostMsg_RunFileChooser_Params;
struct ViewMsg_ClosePage_Params;
struct ViewMsg_Navigate_Params;
@@ -263,12 +262,12 @@
// Called from JavaScript window.external.AddSearchProvider() to add a
// keyword for a provider described in the given OpenSearch document.
void AddSearchProvider(const std::string& url,
- const ViewHostMsg_PageHasOSDD_Type& provider_type);
+ search_provider::OSDDType provider_type);
// Returns the install state for the given search provider url.
- ViewHostMsg_GetSearchProviderInstallState_Params
- GetSearchProviderInstallState(WebKit::WebFrame* frame,
- const std::string& url);
+ search_provider::InstallState GetSearchProviderInstallState(
+ WebKit::WebFrame* frame,
+ const std::string& url);
// Evaluates a string of JavaScript in a particular frame.
void EvaluateScript(const string16& frame_xpath,
@@ -772,7 +771,7 @@
// Adds search provider from the given OpenSearch description URL as a
// keyword search.
void AddGURLSearchProvider(const GURL& osd_url,
- const ViewHostMsg_PageHasOSDD_Type& provider_type);
+ search_provider::OSDDType provider_type);
// Send queued accessibility notifications from the renderer to the browser.
void SendPendingAccessibilityNotifications();
« no previous file with comments | « content/renderer/pepper_plugin_delegate_impl.cc ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698