summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-08 21:16:32 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-08 21:16:32 +0000
commit2c910b73f60d23666a593b5cb9ade7c4cb723c79 (patch)
tree9e7a926d9615bc8341bf12f5f5f589b4ca296778 /chrome/browser/ui/views
parentf20d733f2788dc6b1c28e02b15790bae2332eafd (diff)
downloadchromium_src-2c910b73f60d23666a593b5cb9ade7c4cb723c79.zip
chromium_src-2c910b73f60d23666a593b5cb9ade7c4cb723c79.tar.gz
chromium_src-2c910b73f60d23666a593b5cb9ade7c4cb723c79.tar.bz2
Removing references to off the record in comments and log messages.
Original patch by vipul.bhasin@gmail.com. BUG=3333 TEST=None Review URL: http://codereview.chromium.org/6625076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77331 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/views')
-rw-r--r--chrome/browser/ui/views/browser_actions_container.h2
-rw-r--r--chrome/browser/ui/views/frame/browser_view.h4
-rw-r--r--chrome/browser/ui/views/options/content_exceptions_table_view.h2
-rw-r--r--chrome/browser/ui/views/options/exceptions_view.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/ui/views/browser_actions_container.h b/chrome/browser/ui/views/browser_actions_container.h
index 22846c2..f9f6e38 100644
--- a/chrome/browser/ui/views/browser_actions_container.h
+++ b/chrome/browser/ui/views/browser_actions_container.h
@@ -443,7 +443,7 @@ class BrowserActionsContainer
// Animate to the target size (unless testing, in which case we go straight to
// the target size). This also saves the target number of visible icons in
- // the pref if we're not off the record.
+ // the pref if we're not incognito.
void SaveDesiredSizeAndAnimate(ui::Tween::Type type,
size_t num_visible_icons);
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h
index 911febc..7b45bdb 100644
--- a/chrome/browser/ui/views/frame/browser_view.h
+++ b/chrome/browser/ui/views/frame/browser_view.h
@@ -153,11 +153,11 @@ class BrowserView : public BrowserBubbleHost,
bool UseVerticalTabs() const;
// Returns true if the profile associated with this Browser window is
- // off the record.
+ // incognito.
bool IsOffTheRecord() const;
// Returns true if the non-client view should render the Off-The-Record
- // avatar icon if the window is off the record.
+ // avatar icon if the window is incognito.
bool ShouldShowOffTheRecordAvatar() const;
// Handle the specified |accelerator| being pressed.
diff --git a/chrome/browser/ui/views/options/content_exceptions_table_view.h b/chrome/browser/ui/views/options/content_exceptions_table_view.h
index f0b8dc2..184fb9d 100644
--- a/chrome/browser/ui/views/options/content_exceptions_table_view.h
+++ b/chrome/browser/ui/views/options/content_exceptions_table_view.h
@@ -9,7 +9,7 @@
#include "chrome/browser/content_exceptions_table_model.h"
#include "views/controls/table/table_view.h"
-// A thin wrapper around TableView that displays off-the-record entries in
+// A thin wrapper around TableView that displays incognito entries in
// italics.
class ContentExceptionsTableView : public views::TableView {
public:
diff --git a/chrome/browser/ui/views/options/exceptions_view.h b/chrome/browser/ui/views/options/exceptions_view.h
index d168685..4e920ca 100644
--- a/chrome/browser/ui/views/options/exceptions_view.h
+++ b/chrome/browser/ui/views/options/exceptions_view.h
@@ -100,7 +100,7 @@ class ExceptionsView : public ExceptionEditorView::Delegate,
// The model displayed in the table.
ContentExceptionsTableModel model_;
- // True if the user can also add off the record entries.
+ // True if the user can also add incognito entries.
bool allow_off_the_record_;
views::TableView* table_;