diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-30 04:29:52 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-30 04:29:52 +0000 |
commit | 2d5a359ac6ce676191017e8ed4c07d99061e3883 (patch) | |
tree | bf56dc2ded3ed0de51c1a4e65bb7ff460e19d68f /chrome/browser/location_bar.h | |
parent | 68ad3eeffee6a1e4972b099bffdef17b7d99624d (diff) | |
download | chromium_src-2d5a359ac6ce676191017e8ed4c07d99061e3883.zip chromium_src-2d5a359ac6ce676191017e8ed4c07d99061e3883.tar.gz chromium_src-2d5a359ac6ce676191017e8ed4c07d99061e3883.tar.bz2 |
Add basic support for Content Blocked icons in the omnibox. Not yet
hooked to anything, so they'll never appear.
BUG=33314
TEST=none
Review URL: http://codereview.chromium.org/556077
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/location_bar.h')
-rw-r--r-- | chrome/browser/location_bar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/location_bar.h b/chrome/browser/location_bar.h index d3f4019..9d0a49c 100644 --- a/chrome/browser/location_bar.h +++ b/chrome/browser/location_bar.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -50,6 +50,9 @@ class LocationBar { // focus to it. virtual void FocusSearch() = 0; + // Updates the state of the images showing what content was blocked. + virtual void UpdateContentBlockedIcons() = 0; + // Updates the state of the page actions. virtual void UpdatePageActions() = 0; |