Index: content/renderer/render_view_impl.h |
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h |
index f009b608d91a584c373b64876f2a90dff8772c59..93b1179c9559544cb047b6c3b544ec3dc1d01890 100644 |
--- a/content/renderer/render_view_impl.h |
+++ b/content/renderer/render_view_impl.h |
@@ -816,12 +816,16 @@ class RenderViewImpl : public RenderWidget, |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, JSBlockSentAfterPageLoad); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, LastCommittedUpdateState); |
+ FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnExtendSelectionAndDelete); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnHandleKeyboardEvent); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnImeStateChanged); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavStateChanged); |
+ FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnReplaceAll); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetTextDirection); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK); |
+ FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
+ SetEditableSelectionAndComposition); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL); |
FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
@@ -957,6 +961,7 @@ class RenderViewImpl : public RenderWidget, |
void OnDisableAutoResize(const gfx::Size& new_size); |
void OnEnumerateDirectoryResponse(int id, const std::vector<FilePath>& paths); |
void OnExecuteEditCommand(const std::string& name, const std::string& value); |
+ CONTENT_EXPORT void OnExtendSelectionAndDelete(int before, int after); |
void OnFileChooserResponse( |
const std::vector<ui::SelectedFileInfo>& files); |
void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); |
@@ -984,6 +989,7 @@ class RenderViewImpl : public RenderWidget, |
void OnRedo(); |
void OnReloadFrame(); |
void OnReplace(const string16& text); |
+ CONTENT_EXPORT void OnReplaceAll(const string16& text); |
void OnResetPageEncodingToDefault(); |
void OnScriptEvalRequest(const string16& frame_xpath, |
const string16& jscript, |
@@ -995,6 +1001,10 @@ class RenderViewImpl : public RenderWidget, |
void OnSetActive(bool active); |
void OnSetAltErrorPageURL(const GURL& gurl); |
void OnSetBackground(const SkBitmap& background); |
+ CONTENT_EXPORT void OnSetCompositionFromExistingText( |
+ int start, int end, |
+ const std::vector<WebKit::WebCompositionUnderline>& underlines); |
+ CONTENT_EXPORT void OnSetEditableSelectionOffsets(int start, int end); |
void OnSetNavigationStartTime( |
const base::TimeTicks& browser_navigation_start); |
void OnSetWebUIProperty(const std::string& name, const std::string& value); |
@@ -1025,6 +1035,7 @@ class RenderViewImpl : public RenderWidget, |
void OnUpdateTargetURLAck(); |
CONTENT_EXPORT void OnUpdateWebPreferences( |
const webkit_glue::WebPreferences& prefs); |
+ CONTENT_EXPORT void OnUnselect(); |
#if defined(OS_MACOSX) |
void OnWindowFrameChanged(const gfx::Rect& window_frame, |