OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |