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

Side by Side Diff: chrome/browser/views/content_blocked_bubble_contents.cc

Issue 661235: Rename button from "Close" to "Done" on bookmark bubble and content bubbles. (Closed)
Patch Set: Created 10 years, 9 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
« no previous file with comments | « chrome/browser/views/bookmark_bubble_view.cc ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/views/content_blocked_bubble_contents.h" 5 #include "chrome/browser/views/content_blocked_bubble_contents.h"
6 6
7 #if defined(OS_LINUX) 7 #if defined(OS_LINUX)
8 #include <gdk/gdk.h> 8 #include <gdk/gdk.h>
9 #endif 9 #endif
10 10
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 }; 296 };
297 DCHECK_EQ(arraysize(kLinkIDs), 297 DCHECK_EQ(arraysize(kLinkIDs),
298 static_cast<size_t>(CONTENT_SETTINGS_NUM_TYPES)); 298 static_cast<size_t>(CONTENT_SETTINGS_NUM_TYPES));
299 manage_link_ = new views::Link(l10n_util::GetString(kLinkIDs[content_type_])); 299 manage_link_ = new views::Link(l10n_util::GetString(kLinkIDs[content_type_]));
300 manage_link_->SetController(this); 300 manage_link_->SetController(this);
301 301
302 layout->StartRow(0, double_column_set_id); 302 layout->StartRow(0, double_column_set_id);
303 layout->AddView(manage_link_); 303 layout->AddView(manage_link_);
304 304
305 close_button_ = 305 close_button_ =
306 new views::NativeButton(this, l10n_util::GetString(IDS_CLOSE)); 306 new views::NativeButton(this, l10n_util::GetString(IDS_DONE));
307 layout->AddView(close_button_); 307 layout->AddView(close_button_);
308 } 308 }
OLDNEW
« no previous file with comments | « chrome/browser/views/bookmark_bubble_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698