OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AppIcon
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/google_apis/drive/
gdata_wapi_parser.cc
190
AppIcon
::IconCategory category;
195
{
AppIcon
::ICON_DOCUMENT, "document" },
196
{
AppIcon
::ICON_APPLICATION, "application" },
197
{
AppIcon
::ICON_SHARED_DOCUMENT, "documentShared" },
381
//
AppIcon
implementation
383
AppIcon
::
AppIcon
() : category_(
AppIcon
::ICON_UNKNOWN), icon_side_length_(0) {
386
AppIcon
::~
AppIcon
() {
[
all
...]
gdata_wapi_parser.h
258
class
AppIcon
{
268
AppIcon
();
269
~
AppIcon
();
274
base::JSONValueConverter<
AppIcon
>* converter);
282
// Get a list of links available for this
AppIcon
.
305
DISALLOW_COPY_AND_ASSIGN(
AppIcon
);
737
const ScopedVector<
AppIcon
>& app_icons() const {
743
IconList GetIconsForCategory(
AppIcon
::IconCategory category) const;
780
void set_app_icons(ScopedVector<
AppIcon
> app_icons) {
799
ScopedVector<
AppIcon
> app_icons_
[
all
...]
gdata_wapi_parser_unittest.cc
284
EXPECT_EQ(
AppIcon
::ICON_DOCUMENT, first_app->app_icons()[0]->category());
289
first_app->GetIconsForCategory(
AppIcon
::ICON_DOCUMENT);
292
icons = first_app->GetIconsForCategory(
AppIcon
::ICON_SHARED_DOCUMENT);
/external/chromium_org/chrome/browser/drive/
drive_api_util.h
25
class
AppIcon
;
drive_api_util_unittest.cc
142
ScopedVector<google_apis::
AppIcon
> app_icons;
143
scoped_ptr<google_apis::
AppIcon
> app_icon(new google_apis::
AppIcon
);
144
app_icon->set_category(google_apis::
AppIcon
::ICON_DOCUMENT);
drive_api_util.cc
52
// Converts
AppIcon
(of GData WAPI) to DriveAppIcon.
54
ConvertAppIconToDriveAppIcon(const google_apis::
AppIcon
& app_icon) {
58
case google_apis::
AppIcon
::ICON_UNKNOWN:
61
case google_apis::
AppIcon
::ICON_DOCUMENT:
64
case google_apis::
AppIcon
::ICON_APPLICATION:
67
case google_apis::
AppIcon
::ICON_SHARED_DOCUMENT:
112
const ScopedVector<google_apis::
AppIcon
>& app_icons =
Completed in 853 milliseconds