/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_folder_view.mm | 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.h" 7 #include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h" 9 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h"
|
bookmark_bar_folder_window.h | 15 // click on a bookmark button that represents a folder of bookmarks.
|
bookmark_bar_folder_window_unittest.mm | 6 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h"
|
bookmark_bar_toolbar_view.h | 17 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_state.h"
|
bookmark_drag_source.h | 7 #include "chrome/browser/bookmarks/bookmark_node_data.h"
|
bookmark_folder_target.mm | 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h" 9 #include "chrome/browser/bookmarks/bookmark_model.h" 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" 11 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h"
|
bookmark_menu_cocoa_controller.h | 26 // The Bookmarks menu
|
bookmark_model_observer_for_cocoa.mm | 5 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h"
|
bookmark_model_observer_for_cocoa_unittest.mm | 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h"
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_instructions_gtk.h | 21 // bookmarks.
|
bookmark_utils_gtk_unittest.cc | 5 #include "chrome/browser/ui/gtk/bookmarks/bookmark_utils_gtk.h"
|
/external/chromium/chrome/browser/ui/ |
view_ids.h | 52 // Used for bookmarks/folders on the bookmark bar.
|
/external/chromium/chrome/browser/ui/webui/ |
bookmarks_ui.cc | 52 // Set up the chrome://bookmarks/ source.
|
/external/chromium/chrome/common/extensions/docs/build/ |
generator.html | 21 "?<page> ... ie. generator.html?tabs,bookmarks,cookies,...");
|
/frameworks/base/core/java/android/provider/ |
Browser.java | 28 import android.provider.BrowserContract.Bookmarks; 39 * A table containing both bookmarks and history items. The columns of the table are defined in 44 public static final Uri BOOKMARKS_URI = Uri.parse("content://browser/bookmarks"); 146 entries -- if the user wants more bookmarks than the cap, they 229 * Return a cursor pointing to a list of all the bookmarks. The cursor will have a single 238 return cr.query(Bookmarks.CONTENT_URI, 239 new String[] { Bookmarks.URL }, 240 Bookmarks.IS_FOLDER + " = 0", null, null); 276 whereClause = new StringBuilder(Bookmarks.URL + " = "); 283 whereClause = new StringBuilder(Bookmarks.URL + " = ") [all...] |
/frameworks/base/core/res/res/raw-en-rGB/ |
incognito_mode_start_page.html | 7 <p><strong>You've gone incognito</strong>. Pages that you view in this window won't appear in your browser history or search history, and they won't leave other traces, such as cookies, on your device after you close the incognito window. However, any files that you download or bookmarks that you create will be preserved.</p>
|
/frameworks/base/core/res/res/raw-en-rGB-xlarge/ |
incognito_mode_start_page.html | 7 <p><strong>You've gone incognito</strong>. Pages that you view in this window won't appear in your browser history or search history, and they won't leave other traces, such as cookies, on your device after you close the incognito window. However, any files that you download or bookmarks that you create will be preserved.</p>
|
/packages/apps/Browser/res/layout/ |
pick_bookmark.xml | 22 android:id="@+id/bookmarks"
|
/packages/apps/Browser/res/layout-sw600dp/ |
pick_bookmark.xml | 26 android:id="@+id/bookmarks"
|
/packages/apps/Browser/res/xml/ |
bookmarks_searchable.xml | 27 android:searchSuggestPath="bookmarks"
|
bookmarkthumbnailwidget_info.xml | 17 <!-- 3x2 Widget displaying the user's bookmarks as a list with favicons. -->
|
/packages/apps/Browser/res/xml-sw600dp/ |
bookmarkthumbnailwidget_info.xml | 17 <!-- 3x3 Widget displaying the user's bookmarks as a list with favicons. -->
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_pasteboard_helper_mac.mm | 5 #include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h" 10 #include "chrome/browser/bookmarks/bookmark_model.h" 11 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_drag_source.h" 25 // a set of bookmarks came from. 83 NSArray* bookmarks = 85 if (!bookmarks) return false; 86 ConvertPlistToElements(bookmarks, elements);
|
bookmark_html_writer.cc | 5 #include "chrome/browser/bookmarks/bookmark_html_writer.h" 16 #include "chrome/browser/bookmarks/bookmark_codec.h" 17 #include "chrome/browser/bookmarks/bookmark_model.h" 40 "<TITLE>Bookmarks</TITLE>\r\n" 41 "<H1>Bookmarks</H1>\r\n" 47 // The following are used for bookmarks. 83 Writer(Value* bookmarks, 87 : bookmarks_(bookmarks), 98 // Writing bookmarks and favicons data to file. 219 // (used by bookmarks.html) and writes it [all...] |
bookmark_model.cc | 5 #include "chrome/browser/bookmarks/bookmark_model.h" 13 #include "chrome/browser/bookmarks/bookmark_index.h" 14 #include "chrome/browser/bookmarks/bookmark_storage.h" 15 #include "chrome/browser/bookmarks/bookmark_utils.h" 93 // Comparator used when sorting bookmarks. Folders are sorted first, then 94 // bookmarks. 160 // Load the bookmarks. BookmarkStorage notifies us when done. 457 std::vector<const BookmarkNode*> bookmarks; local 458 GetNodesByURL(url, &bookmarks); 459 bool bookmarks_exist = !bookmarks.empty() [all...] |