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

Side by Side Diff: chrome/browser/ui/views/options/passwords_exceptions_window_view.cc

Issue 6299008: chrome/browser/ui/views include ordering and (C) dates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/views/options/content_page_view.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/options/passwords_exceptions_window_view.h" 5 #include "chrome/browser/ui/views/options/passwords_exceptions_window_view.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "chrome/browser/ui/views/options/exceptions_page_view.h"
9 #include "chrome/browser/ui/views/options/passwords_page_view.h" 10 #include "chrome/browser/ui/views/options/passwords_page_view.h"
10 #include "chrome/browser/ui/views/options/exceptions_page_view.h"
11 #include "grit/generated_resources.h" 11 #include "grit/generated_resources.h"
12 #include "grit/locale_settings.h" 12 #include "grit/locale_settings.h"
13 #include "views/controls/tabbed_pane/tabbed_pane.h" 13 #include "views/controls/tabbed_pane/tabbed_pane.h"
14 #include "views/window/window.h" 14 #include "views/window/window.h"
15 15
16 // static 16 // static
17 PasswordsExceptionsWindowView* PasswordsExceptionsWindowView::instance_ = NULL; 17 PasswordsExceptionsWindowView* PasswordsExceptionsWindowView::instance_ = NULL;
18 18
19 static const int kDialogPadding = 7; 19 static const int kDialogPadding = 7;
20 20
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 AddChildView(tabs_); 104 AddChildView(tabs_);
105 105
106 passwords_page_view_ = new PasswordsPageView(profile_); 106 passwords_page_view_ = new PasswordsPageView(profile_);
107 tabs_->AddTab(UTF16ToWide(l10n_util::GetStringUTF16( 107 tabs_->AddTab(UTF16ToWide(l10n_util::GetStringUTF16(
108 IDS_PASSWORDS_SHOW_PASSWORDS_TAB_TITLE)), passwords_page_view_); 108 IDS_PASSWORDS_SHOW_PASSWORDS_TAB_TITLE)), passwords_page_view_);
109 109
110 exceptions_page_view_ = new ExceptionsPageView(profile_); 110 exceptions_page_view_ = new ExceptionsPageView(profile_);
111 tabs_->AddTab(UTF16ToWide(l10n_util::GetStringUTF16( 111 tabs_->AddTab(UTF16ToWide(l10n_util::GetStringUTF16(
112 IDS_PASSWORDS_EXCEPTIONS_TAB_TITLE)), exceptions_page_view_); 112 IDS_PASSWORDS_EXCEPTIONS_TAB_TITLE)), exceptions_page_view_);
113 } 113 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/options/content_page_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698