1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
|
// 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.
#include "chrome/browser/chromeos/dom_ui/menu_ui.h"
#include <algorithm>
#include "app/menus/menu_model.h"
#include "app/resource_bundle.h"
#include "base/callback.h"
#include "base/command_line.h"
#include "base/json/json_writer.h"
#include "base/message_loop.h"
#include "base/singleton.h"
#include "base/string_number_conversions.h"
#include "base/string_piece.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "base/weak_ptr.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/chromeos/views/domui_menu_widget.h"
#include "chrome/browser/chromeos/views/native_menu_domui.h"
#include "chrome/browser/dom_ui/dom_ui_util.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/browser/tab_contents/tab_contents_delegate.h"
#include "chrome/common/url_constants.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/jstemplate_builder.h"
#include "gfx/canvas_skia.h"
#include "gfx/favicon_size.h"
#include "gfx/font.h"
#include "grit/app_resources.h"
#include "grit/browser_resources.h"
#include "views/accelerator.h"
#include "views/controls/menu/menu_config.h"
#include "views/controls/menu/radio_button_image_gtk.h"
#include "views/widget/widget_gtk.h"
namespace {
// a fake resource id for not loading extra resource.
const int kNoExtraResource = -1;
// A utility function that generates css font property from gfx::Font.
std::wstring GetFontShorthand(const gfx::Font* font) {
std::wstring out;
if (font == NULL) {
font = &(views::MenuConfig::instance().font);
}
if (font->GetStyle() & gfx::Font::BOLD) {
out.append(L"bold ");
}
if (font->GetStyle() & gfx::Font::ITALIC) {
out.append(L"italic ");
}
if (font->GetStyle() & gfx::Font::UNDERLINED) {
out.append(L"underline ");
}
// TODO(oshima): The font size from gfx::Font is too small when
// used in webkit. Figure out the reason.
out.append(ASCIIToWide(base::IntToString(font->GetFontSize() + 4)));
out.append(L"px/");
out.append(ASCIIToWide(base::IntToString(
std::max(kFavIconSize, font->GetHeight()))));
out.append(L"px \"");
out.append(font->GetFontName());
out.append(L"\",sans-serif");
return out;
}
// Creates scroll button's up image when |up| is true or
// down image if |up| is false.
SkBitmap CreateMenuScrollArrowImage(bool up) {
const views::MenuConfig& config = views::MenuConfig::instance();
int height = config.scroll_arrow_height;
gfx::CanvasSkia canvas(height * 2, height, false);
if (!up) {
// flip the direction.
canvas.scale(1.0, -1.0);
canvas.translate(0, -height);
}
// Draw triangle.
SkPath path;
path.moveTo(height, 0);
path.lineTo(0, height);
path.lineTo(height * 2, height);
SkPaint paint;
paint.setColor(SK_ColorBLACK);
paint.setStyle(SkPaint::kFill_Style);
paint.setAntiAlias(true);
canvas.drawPath(path, paint);
return canvas.ExtractBitmap();
}
// Returns the scroll button's up image if |up| is true, or
// "down" image otherwise.
const std::string& GetImageDataUrlForMenuScrollArrow(bool up) {
static const std::string upImage =
dom_ui_util::GetImageDataUrl(CreateMenuScrollArrowImage(true));
static const std::string downImage =
dom_ui_util::GetImageDataUrl(CreateMenuScrollArrowImage(false));
return up ? upImage : downImage;
}
// Returns the radio button's "on" image if |on| is true, or
// "off" image otherwise.
const std::string& GetImageDataUrlForRadio(bool on) {
static const std::string onImage =
dom_ui_util::GetImageDataUrl(*views::GetRadioButtonImage(true));
static const std::string offImage =
dom_ui_util::GetImageDataUrl(*views::GetRadioButtonImage(false));
return on ? onImage : offImage;
}
/**
* Generates a html file that uses |menu_class| as a menu implementation.
* |menu_source_id| specifies the source that contains the definition of the
* |menu_class|, or empty string to use plain "Menu".
*
* TODO(oshima): make this template to avoid repeatedly loading the
* same source/css files.
*/
std::string GetMenuUIHTMLSourceFromString(
const chromeos::MenuSourceDelegate* delegate,
const base::StringPiece& menu_template,
const std::string& menu_class,
int menu_source_id,
int menu_css_id) {
#define SET_INTEGER_PROPERTY(prop) \
value_config.SetInteger(#prop, menu_config.prop)
const views::MenuConfig& menu_config = views::MenuConfig::instance();
DictionaryValue value_config;
value_config.SetString("radioOnUrl", GetImageDataUrlForRadio(true));
value_config.SetString("radioOffUrl", GetImageDataUrlForRadio(false));
value_config.SetString(
"arrowUrl", dom_ui_util::GetImageDataUrlFromResource(IDR_MENU_ARROW));
value_config.SetString(
"checkUrl", dom_ui_util::GetImageDataUrlFromResource(IDR_MENU_CHECK));
value_config.SetString(
"scrollUpUrl", GetImageDataUrlForMenuScrollArrow(true));
value_config.SetString(
"scrollDownUrl", GetImageDataUrlForMenuScrollArrow(false));
SET_INTEGER_PROPERTY(item_top_margin);
SET_INTEGER_PROPERTY(item_bottom_margin);
SET_INTEGER_PROPERTY(item_no_icon_top_margin);
SET_INTEGER_PROPERTY(item_no_icon_bottom_margin);
SET_INTEGER_PROPERTY(item_left_margin);
SET_INTEGER_PROPERTY(label_to_arrow_padding);
SET_INTEGER_PROPERTY(arrow_to_edge_padding);
SET_INTEGER_PROPERTY(icon_to_label_padding);
SET_INTEGER_PROPERTY(gutter_to_label);
SET_INTEGER_PROPERTY(check_width);
SET_INTEGER_PROPERTY(check_height);
SET_INTEGER_PROPERTY(radio_width);
SET_INTEGER_PROPERTY(radio_height);
SET_INTEGER_PROPERTY(arrow_height);
SET_INTEGER_PROPERTY(arrow_width);
SET_INTEGER_PROPERTY(gutter_width);
SET_INTEGER_PROPERTY(separator_height);
SET_INTEGER_PROPERTY(render_gutter);
SET_INTEGER_PROPERTY(show_mnemonics);
SET_INTEGER_PROPERTY(scroll_arrow_height);
SET_INTEGER_PROPERTY(label_to_accelerator_padding);
if (delegate)
delegate->AddCustomConfigValues(&value_config);
std::string json_config;
base::JSONWriter::Write(&value_config, false, &json_config);
DictionaryValue strings;
strings.SetString(
"init_script",
menu_class + ".decorate(document.getElementById('viewport'));" +
" init(" + json_config + ");");
if (menu_source_id == kNoExtraResource) {
strings.SetString("menu_source", "");
} else {
base::StringPiece menu_source(
ResourceBundle::GetSharedInstance().GetRawDataResource(menu_source_id));
strings.SetString("menu_source", menu_source.as_string());
}
if (menu_css_id == kNoExtraResource) {
strings.SetString("menu_css", "");
} else {
base::StringPiece menu_css(
ResourceBundle::GetSharedInstance().GetRawDataResource(menu_css_id));
strings.SetString("menu_css", menu_css.as_string());
}
if (delegate)
delegate->AddLocalizedStrings(&strings);
return jstemplate_builder::GetI18nTemplateHtml(menu_template, &strings);
}
class MenuUIHTMLSource : public ChromeURLDataManager::DataSource {
public:
MenuUIHTMLSource(const chromeos::MenuSourceDelegate* delegate,
const std::string& source_name,
const std::string& menu_class,
int menu_source_id,
int menu_css_id);
// Called when the network layer has requested a resource underneath
// the path we registered.
virtual void StartDataRequest(const std::string& path,
bool is_off_the_record,
int request_id);
virtual std::string GetMimeType(const std::string&) const {
return "text/html";
}
private:
virtual ~MenuUIHTMLSource() {}
// The menu ui the source is created for.
scoped_ptr<const chromeos::MenuSourceDelegate> delegate_;
// The name of JS Menu class to use.
const std::string menu_class_;
// The resource id of the JS file of the menu subclass.
int menu_source_id_;
// The resource id of the CSS file of the menu subclass.
int menu_css_id_;
DISALLOW_COPY_AND_ASSIGN(MenuUIHTMLSource);
};
// The handler for Javascript messages related to the "system" view.
class MenuHandler : public chromeos::MenuHandlerBase,
public base::SupportsWeakPtr<MenuHandler>,
public TabContentsDelegate {
public:
MenuHandler();
virtual ~MenuHandler();
// DOMMessageHandler implementation.
virtual DOMMessageHandler* Attach(DOMUI* dom_ui);
virtual void RegisterMessages();
private:
void HandleActivate(const ListValue* values);
void HandleOpenSubmenu(const ListValue* values);
void HandleCloseSubmenu(const ListValue* values);
void HandleMoveInputToSubmenu(const ListValue* values);
void HandleMoveInputToParent(const ListValue* values);
void HandleCloseAll(const ListValue* values);
void HandleModelUpdated(const ListValue* values);
// This is a utility DOMUI message to print debug message.
// Menu can't use dev tool as it lives outside of browser.
// TODO(oshima): This is inconvenient and figure out how we can use
// dev tools for menus (and other domui that does not belong to browser).
void HandleLog(const ListValue* values);
// TabContentsDelegate implements:
virtual void UpdatePreferredSize(const gfx::Size& new_size);
virtual void LoadingStateChanged(TabContents* contents);
virtual void OpenURLFromTab(TabContents* source,
const GURL& url, const GURL& referrer,
WindowOpenDisposition disposition,
PageTransition::Type transition) {}
virtual void NavigationStateChanged(const TabContents* source,
unsigned changed_flags) {}
virtual void AddNewContents(TabContents* source,
TabContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {}
// TODO(oshima): Handle crash
virtual void ActivateContents(TabContents* contents) {}
virtual void DeactivateContents(TabContents* contents) {}
virtual void CloseContents(TabContents* source) {}
virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {}
virtual bool IsPopup(const TabContents* source) { return false; }
virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {}
virtual void URLStarredChanged(TabContents* source, bool starred) {}
virtual void UpdateTargetURL(TabContents* source, const GURL& url) {}
virtual bool CanDownload(int request_id) { return false; }
virtual bool infobars_enabled() { return false; }
virtual bool ShouldEnablePreferredSizeNotifications() { return true; }
virtual bool CanReloadContents(TabContents* source) const { return false; }
// True if the page is loaded.
bool loaded_;
DISALLOW_COPY_AND_ASSIGN(MenuHandler);
};
////////////////////////////////////////////////////////////////////////////////
//
// MenuUIHTMLSource
//
////////////////////////////////////////////////////////////////////////////////
MenuUIHTMLSource::MenuUIHTMLSource(const chromeos::MenuSourceDelegate* delegate,
const std::string& source_name,
const std::string& menu_class,
int menu_source_id,
int menu_css_id)
: DataSource(source_name, MessageLoop::current()),
delegate_(delegate),
menu_class_(menu_class),
menu_source_id_(menu_source_id),
menu_css_id_(menu_css_id) {
}
void MenuUIHTMLSource::StartDataRequest(const std::string& path,
bool is_off_the_record,
int request_id) {
static const base::StringPiece menu_template(
ResourceBundle::GetSharedInstance().GetRawDataResource(IDR_MENU_HTML));
// The resource string should be pure code and should not contain
// i18n string.
const std::string menu_html = GetMenuUIHTMLSourceFromString(
delegate_.get(), menu_template, menu_class_,
menu_source_id_, menu_css_id_);
scoped_refptr<RefCountedBytes> html_bytes(new RefCountedBytes);
// TODO(oshima): Eliminate boilerplate code. See http://crbug.com/57583 .
html_bytes->data.resize(menu_html.size());
std::copy(menu_html.begin(), menu_html.end(),
html_bytes->data.begin());
SendResponse(request_id, html_bytes);
}
////////////////////////////////////////////////////////////////////////////////
//
// MenuHandler
//
////////////////////////////////////////////////////////////////////////////////
MenuHandler::MenuHandler() : loaded_(false) {
}
MenuHandler::~MenuHandler() {
}
DOMMessageHandler* MenuHandler::Attach(DOMUI* dom_ui) {
DOMMessageHandler* handler = DOMMessageHandler::Attach(dom_ui);
dom_ui->tab_contents()->set_delegate(this);
return handler;
}
void MenuHandler::RegisterMessages() {
dom_ui_->RegisterMessageCallback(
"activate",
NewCallback(this,
&MenuHandler::HandleActivate));
dom_ui_->RegisterMessageCallback(
"open_submenu",
NewCallback(this,
&MenuHandler::HandleOpenSubmenu));
dom_ui_->RegisterMessageCallback(
"close_submenu",
NewCallback(this,
&MenuHandler::HandleCloseSubmenu));
dom_ui_->RegisterMessageCallback(
"move_to_submenu",
NewCallback(this,
&MenuHandler::HandleMoveInputToSubmenu));
dom_ui_->RegisterMessageCallback(
"move_to_parent",
NewCallback(this,
&MenuHandler::HandleMoveInputToParent));
dom_ui_->RegisterMessageCallback(
"close_all",
NewCallback(this,
&MenuHandler::HandleCloseAll));
dom_ui_->RegisterMessageCallback(
"model_updated",
NewCallback(this,
&MenuHandler::HandleModelUpdated));
dom_ui_->RegisterMessageCallback(
"log",
NewCallback(this,
&MenuHandler::HandleLog));
}
void MenuHandler::HandleActivate(const ListValue* values) {
CHECK_EQ(2U, values->GetSize());
std::string index_str;
bool success = values->GetString(0, &index_str);
DCHECK(success);
std::string activation;
success = values->GetString(1, &activation);
DCHECK(success);
int index;
success = base::StringToInt(index_str, &index);
DCHECK(success);
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control) {
menus::MenuModel* model = GetMenuModel();
DCHECK(model);
DCHECK_GE(index, 0);
DCHECK(activation == "close_and_activate" ||
activation == "activate_no_close") << activation;
if (model->IsEnabledAt(index)) {
control->Activate(model,
index,
activation == "close_and_activate" ?
chromeos::DOMUIMenuControl::CLOSE_AND_ACTIVATE :
chromeos::DOMUIMenuControl::ACTIVATE_NO_CLOSE);
}
}
}
void MenuHandler::HandleOpenSubmenu(const ListValue* values) {
CHECK_EQ(2U, values->GetSize());
std::string index_str;
bool success = values->GetString(0, &index_str);
DCHECK(success);
std::string y_str;
success = values->GetString(1, &y_str);
DCHECK(success);
int index;
success = base::StringToInt(index_str, &index);
DCHECK(success);
int y;
success = base::StringToInt(y_str, &y);
DCHECK(success);
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control)
control->OpenSubmenu(index, y);
}
void MenuHandler::HandleCloseSubmenu(const ListValue* values) {
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control)
control->CloseSubmenu();
}
void MenuHandler::HandleMoveInputToSubmenu(const ListValue* values) {
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control)
control->MoveInputToSubmenu();
}
void MenuHandler::HandleMoveInputToParent(const ListValue* values) {
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control)
control->MoveInputToParent();
}
void MenuHandler::HandleCloseAll(const ListValue* values) {
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control)
control->CloseAll();
}
void MenuHandler::HandleModelUpdated(const ListValue* values) {
menus::MenuModel* model = GetMenuModel();
if (model)
static_cast<chromeos::MenuUI*>(dom_ui_)->ModelUpdated(model);
}
void MenuHandler::HandleLog(const ListValue* values) {
CHECK_EQ(1U, values->GetSize());
std::string msg;
bool success = values->GetString(0, &msg);
DCHECK(success);
DVLOG(1) << msg;
}
void MenuHandler::UpdatePreferredSize(const gfx::Size& new_size) {
if (!loaded_)
return;
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control)
control->SetSize(new_size);
}
void MenuHandler::LoadingStateChanged(TabContents* contents) {
chromeos::DOMUIMenuControl* control = GetMenuControl();
if (control && !contents->is_loading()) {
loaded_ = true;
control->OnLoad();
HandleModelUpdated(NULL);
}
}
} // namespace
namespace chromeos {
////////////////////////////////////////////////////////////////////////////////
//
// MenuHandlerBase
//
////////////////////////////////////////////////////////////////////////////////
chromeos::DOMUIMenuControl* MenuHandlerBase::GetMenuControl() {
DOMUIMenuWidget* widget =
chromeos::DOMUIMenuWidget::FindDOMUIMenuWidget(
dom_ui_->tab_contents()->GetNativeView());
if (widget)
return widget->domui_menu(); // NativeMenuDOMUI implements DOMUIMenuControl
else
return NULL;
}
menus::MenuModel* MenuHandlerBase::GetMenuModel() {
DOMUIMenuControl* control = GetMenuControl();
if (control)
return control->GetMenuModel();
else
return NULL;
}
////////////////////////////////////////////////////////////////////////////////
//
// MenuUI
//
////////////////////////////////////////////////////////////////////////////////
MenuUI::MenuUI(TabContents* contents) : DOMUI(contents) {
MenuHandler* handler = new MenuHandler();
AddMessageHandler((handler)->Attach(this));
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
NewRunnableMethod(
ChromeURLDataManager::GetInstance(),
&ChromeURLDataManager::AddDataSource,
make_scoped_refptr(CreateDataSource())));
}
MenuUI::MenuUI(TabContents* contents, ChromeURLDataManager::DataSource* source)
: DOMUI(contents) {
MenuHandler* handler = new MenuHandler();
AddMessageHandler((handler)->Attach(this));
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
NewRunnableMethod(
ChromeURLDataManager::GetInstance(),
&ChromeURLDataManager::AddDataSource,
make_scoped_refptr(source)));
}
void MenuUI::ModelUpdated(const menus::MenuModel* model) {
DictionaryValue json_model;
ListValue* items = new ListValue();
json_model.Set("items", items);
int max_icon_width = 0;
bool has_accelerator = false;
for (int index = 0; index < model->GetItemCount(); ++index) {
menus::MenuModel::ItemType type = model->GetTypeAt(index);
DictionaryValue* item;
switch (type) {
case menus::MenuModel::TYPE_SEPARATOR:
item = CreateMenuItem(model, index, "separator",
&max_icon_width, &has_accelerator);
break;
case menus::MenuModel::TYPE_RADIO:
max_icon_width = std::max(max_icon_width, 12);
item = CreateMenuItem(model, index, "radio",
&max_icon_width, &has_accelerator);
break;
case menus::MenuModel::TYPE_SUBMENU:
item = CreateMenuItem(model, index, "submenu",
&max_icon_width, &has_accelerator);
break;
case menus::MenuModel::TYPE_COMMAND:
item = CreateMenuItem(model, index, "command",
&max_icon_width, &has_accelerator);
break;
case menus::MenuModel::TYPE_CHECK:
// Add space even when unchecked.
max_icon_width = std::max(max_icon_width, 12);
item = CreateMenuItem(model, index, "check",
&max_icon_width, &has_accelerator);
break;
default:
// TODO(oshima): We don't support BUTTOM_ITEM for now.
NOTREACHED();
continue;
}
items->Set(index, item);
}
DOMUIMenuWidget* widget =
chromeos::DOMUIMenuWidget::FindDOMUIMenuWidget(
tab_contents()->GetNativeView());
DCHECK(widget);
json_model.SetInteger("maxIconWidth", max_icon_width);
json_model.SetBoolean("isRoot", widget->is_root());
json_model.SetBoolean("hasAccelerator", has_accelerator);
CallJavascriptFunction(L"updateModel", json_model);
}
DictionaryValue* MenuUI::CreateMenuItem(const menus::MenuModel* model,
int index,
const char* type,
int* max_icon_width,
bool* has_accel) const {
// Note: DOM UI uses '&' as mnemonic.
string16 label16 = model->GetLabelAt(index);
DictionaryValue* item = new DictionaryValue();
item->SetString("type", type);
item->SetString("label", label16);
item->SetBoolean("enabled", model->IsEnabledAt(index));
item->SetBoolean("visible", model->IsVisibleAt(index));
item->SetBoolean("checked", model->IsItemCheckedAt(index));
item->SetInteger("command_id", model->GetCommandIdAt(index));
item->SetString(
"font", WideToUTF16(GetFontShorthand(model->GetLabelFontAt(index))));
SkBitmap icon;
if (model->GetIconAt(index, &icon) && !icon.isNull() && !icon.empty()) {
item->SetString("icon", dom_ui_util::GetImageDataUrl(icon));
*max_icon_width = std::max(*max_icon_width, icon.width());
}
views::Accelerator menu_accelerator;
if (model->GetAcceleratorAt(index, &menu_accelerator)) {
item->SetString("accel", WideToUTF16(menu_accelerator.GetShortcutText()));
*has_accel = true;
}
return item;
}
// static
ChromeURLDataManager::DataSource* MenuUI::CreateMenuUIHTMLSource(
const MenuSourceDelegate* delegate,
const std::string& source_name,
const std::string& menu_class,
int menu_source_id,
int menu_css_id) {
return new MenuUIHTMLSource(delegate,
source_name,
menu_class,
menu_source_id,
menu_css_id);
}
// static
bool MenuUI::IsEnabled() {
return CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableDOMUIMenu);
}
ChromeURLDataManager::DataSource* MenuUI::CreateDataSource() {
return CreateMenuUIHTMLSource(NULL,
chrome::kChromeUIMenu,
"Menu" /* class name */,
kNoExtraResource,
kNoExtraResource);
}
} // namespace chromeos
|