summaryrefslogtreecommitdiffstats
path: root/components/web_contents_delegate_android
diff options
context:
space:
mode:
authorrdevlin.cronin@chromium.org <rdevlin.cronin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-18 19:28:55 +0000
committerrdevlin.cronin@chromium.org <rdevlin.cronin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-18 19:30:30 +0000
commit1c757366e37fe54b8ddf1141b845d2aa1647ab0b (patch)
tree5b5ad112cc80c83518cd64ba0a2dcc5c41adaed1 /components/web_contents_delegate_android
parent565ee84e2e2d09891c0c3c68b562af89ae98b3c1 (diff)
downloadchromium_src-1c757366e37fe54b8ddf1141b845d2aa1647ab0b.zip
chromium_src-1c757366e37fe54b8ddf1141b845d2aa1647ab0b.tar.gz
chromium_src-1c757366e37fe54b8ddf1141b845d2aa1647ab0b.tar.bz2
Remove content::INVALIDATE_TYPE_PAGE_ACTIONS
There's really no reason to pipe this through content. What's more, the observer method will make work on the new extensions toolbar easier. BUG=404151 Review URL: https://codereview.chromium.org/473573005 Cr-Commit-Position: refs/heads/master@{#290328} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290328 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/web_contents_delegate_android')
-rw-r--r--components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
index adcd5a8..fff738c 100644
--- a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
+++ b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
@@ -33,10 +33,8 @@ public class WebContentsDelegateAndroid {
public static final int INVALIDATE_TYPE_TAB = 1 << 1;
// Equivalent of InvalidateTypes::INVALIDATE_TYPE_LOAD.
public static final int INVALIDATE_TYPE_LOAD = 1 << 2;
- // Equivalent of InvalidateTypes::INVALIDATE_TYPE_PAGE_ACTIONS.
- public static final int INVALIDATE_TYPE_PAGE_ACTIONS = 1 << 3;
// Equivalent of InvalidateTypes::INVALIDATE_TYPE_TITLE.
- public static final int INVALIDATE_TYPE_TITLE = 1 << 4;
+ public static final int INVALIDATE_TYPE_TITLE = 1 << 3;
// The most recent load progress callback received from WebContents, as a percentage.
// Initialize to 100 to indicate that we're not in a loading state.