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

Unified Diff: content/renderer/render_view.h

Issue 8082019: more content exports needed for unit_tests and browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert export of browser_accessibility_win for now Created 9 years, 3 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
Index: content/renderer/render_view.h
diff --git a/content/renderer/render_view.h b/content/renderer/render_view.h
index e6be86ec77130d0ce62ddc12768f0dfc1fc3558b..fc73cdf48b4010f9ad6b6f59790e7161a23ad89e 100644
--- a/content/renderer/render_view.h
+++ b/content/renderer/render_view.h
@@ -177,7 +177,7 @@ class RenderView : public RenderWidget,
// responsible for creating this RenderView (corresponding to parent_hwnd).
// |counter| is either a currently initialized counter, or NULL (in which case
// we treat this RenderView as a top level window).
- static RenderView* Create(
+ CONTENT_EXPORT static RenderView* Create(
RenderThreadBase* render_thread,
gfx::NativeViewId parent_hwnd,
int32 opener_id,
@@ -816,7 +816,7 @@ class RenderView : public RenderWidget,
const WebKit::WebMediaPlayerAction& action);
void OnMouseLockLost();
void OnMoveOrResizeStarted();
- void OnNavigate(const ViewMsg_Navigate_Params& params);
+ CONTENT_EXPORT void OnNavigate(const ViewMsg_Navigate_Params& params);
void OnPaste();
#if defined(OS_MACOSX)
void OnPluginImeCompositionCompleted(const string16& text, int plugin_id);
@@ -837,7 +837,8 @@ class RenderView : public RenderWidget,
void OnSetBackground(const SkBitmap& background);
void OnSetWebUIProperty(const std::string& name, const std::string& value);
void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
- void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id);
+ CONTENT_EXPORT void OnSetHistoryLengthAndPrune(int history_length,
+ int32 minimum_page_id);
void OnSetInitialFocus(bool reverse);
#if defined(OS_MACOSX)
void OnSetInLiveResize(bool in_live_resize);

Powered by Google App Engine
This is Rietveld 408576698