HomeSort by relevance Sort by last modified time
    Searched refs:appid (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/
background_contents_service_unittest.cc 42 std::string GetPrefURLForApp(Profile* profile, const string16& appid) {
44 EXPECT_TRUE(pref->HasKey(UTF16ToUTF8(appid)));
46 pref->GetDictionaryWithoutPathExpansion(UTF16ToUTF8(appid), &value);
97 const string16& appid() { return appid_; } function in class:MockBackgroundContents
141 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
146 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
162 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
178 &profile, "appid"));
182 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
191 &profile, "appid"));
    [all...]
background_contents_service.h 53 BackgroundContents* GetAppBackgroundContents(const string16& appid);
125 // Creates a single BackgroundContents associated with the specified |appid|,
131 const string16& appid);
150 void ShutdownAssociatedBackgroundContents(const string16& appid);
background_contents_service.cc 223 const string16& appid = GetParentApplicationId(bgcontents); local
228 extension_service->GetExtensionById(UTF16ToUTF8(appid), false);
480 const string16& appid = GetParentApplicationId(background_contents); local
482 if (pref->GetDictionaryWithoutPathExpansion(UTF16ToUTF8(appid), &current))
488 dict->SetString(kFrameNameKey, contents_map_[appid].frame_name);
489 pref->SetWithoutPathExpansion(UTF16ToUTF8(appid), dict);
498 const string16 appid = GetParentApplicationId(background_contents); local
500 update.Get()->RemoveWithoutPathExpansion(UTF16ToUTF8(appid), NULL);
505 const string16& appid) {
506 BackgroundContents* contents = GetAppBackgroundContents(appid);
534 string16 appid = GetParentApplicationId(background_contents); local
    [all...]
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 163 int appId = cursor.getInt(COLUMN_APPID);
164 String out = name + "|" + frequency + "|" + locale + "|" + appId;
216 String appid = null; local
219 if (st.hasMoreTokens()) appid = st.nextToken();
221 int appidInt = appid != null? Integer.parseInt(appid) : 0;

Completed in 61 milliseconds