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

Side by Side Diff: chrome/browser/ui/toolbar/bookmark_sub_menu_model.cc

Issue 498773003: Use a qualified path for chromium_strings, google_chrome_strings, and generated_resources. (part 2 … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 3 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
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/toolbar/bookmark_sub_menu_model.h" 5 #include "chrome/browser/ui/toolbar/bookmark_sub_menu_model.h"
6 6
7 #include "chrome/app/chrome_command_ids.h" 7 #include "chrome/app/chrome_command_ids.h"
8 #include "grit/generated_resources.h" 8 #include "chrome/grit/generated_resources.h"
9 9
10 // For views and cocoa, we have complex delegate systems to handle 10 // For views and cocoa, we have complex delegate systems to handle
11 // injecting the bookmarks to the bookmark submenu. This is done to support 11 // injecting the bookmarks to the bookmark submenu. This is done to support
12 // advanced interactions with the menu contents, like right click context menus. 12 // advanced interactions with the menu contents, like right click context menus.
13 // For the time being on GTK systems, we have a dedicated bookmark menu model in 13 // For the time being on GTK systems, we have a dedicated bookmark menu model in
14 // chrome/browser/ui/gtk/bookmarks/bookmark_sub_menu_model_gtk.cc instead. 14 // chrome/browser/ui/gtk/bookmarks/bookmark_sub_menu_model_gtk.cc instead.
15 15
16 // Note that although this file's header is included on GTK systems, this 16 // Note that although this file's header is included on GTK systems, this
17 // source file is not compiled there. (The header just includes the GTK one.) 17 // source file is not compiled there. (The header just includes the GTK one.)
18 18
(...skipping 18 matching lines...) Expand all
37 37
38 AddItemWithStringId(IDC_BOOKMARK_PAGE, IDS_BOOKMARK_THIS_PAGE); 38 AddItemWithStringId(IDC_BOOKMARK_PAGE, IDS_BOOKMARK_THIS_PAGE);
39 AddItemWithStringId(IDC_BOOKMARK_ALL_TABS, IDS_BOOKMARK_OPEN_PAGES); 39 AddItemWithStringId(IDC_BOOKMARK_ALL_TABS, IDS_BOOKMARK_OPEN_PAGES);
40 40
41 AddItemWithStringId(IDC_PIN_TO_START_SCREEN, IDS_PIN_TO_START_SCREEN); 41 AddItemWithStringId(IDC_PIN_TO_START_SCREEN, IDS_PIN_TO_START_SCREEN);
42 } 42 }
43 #if defined(OS_MACOSX) 43 #if defined(OS_MACOSX)
44 AddSeparator(ui::NORMAL_SEPARATOR); 44 AddSeparator(ui::NORMAL_SEPARATOR);
45 #endif 45 #endif
46 } 46 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/toolbar/back_forward_menu_model.cc ('k') | chrome/browser/ui/toolbar/encoding_menu_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698