HomeSort by relevance Sort by last modified time
    Searched refs:app_id (Results 1 - 25 of 385) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_controller_chromeos.cc 8 const std::string& app_id) {
  /external/chromium_org/chrome/browser/apps/
install_chrome_app.h 14 void InstallChromeApp(const std::string& app_id);
per_app_settings_service.cc 14 const std::string& app_id, chrome::HostDesktopType host_desktop) {
15 default_desktops_[app_id] = host_desktop;
19 const std::string& app_id) const {
20 DesktopMap::const_iterator it = default_desktops_.find(app_id);
27 const std::string& app_id) const {
28 return default_desktops_.find(app_id) != default_desktops_.end();
per_app_settings_service.h 21 // Sets/gets the desktop that |app_id| was last launched from.
23 const std::string& app_id, chrome::HostDesktopType host);
25 const std::string& app_id) const;
26 bool HasDesktopLastLaunchedFrom(const std::string& app_id) const;
install_chrome_app.cc 32 GURL GetAppInstallUrl(const std::string& app_id) {
33 return GURL(base::StringPrintf(kWebstoreUrlFormat, app_id.c_str()));
53 explicit AppURLFetcher(const std::string& app_id);
66 AppURLFetcher::AppURLFetcher(const std::string& app_id) {
68 GetAppInstallUrl(app_id), net::URLFetcher::GET, this));
90 void InstallChromeApp(const std::string& app_id) {
91 if (!extensions::Extension::IdIsValid(app_id))
94 new AppURLFetcher(app_id);
  /external/chromium_org/components/gcm_driver/
default_gcm_app_handler.cc 23 const std::string& app_id,
25 LOG(ERROR) << "No app handler is found to route message for " << app_id;
28 void DefaultGCMAppHandler::OnMessagesDeleted(const std::string& app_id) {
30 << app_id;
34 const std::string& app_id,
37 << app_id;
gcm_app_handler.h 28 virtual void OnMessage(const std::string& app_id,
32 virtual void OnMessagesDeleted(const std::string& app_id) = 0;
36 const std::string& app_id,
49 // If no app handler has been added with the exact app_id of an incoming
51 // handle the app_id, and the first to return true will receive the event.
52 virtual bool CanHandle(const std::string& app_id) const;
default_gcm_app_handler.h 22 virtual void OnMessage(const std::string& app_id,
24 virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
26 const std::string& app_id,
gcm_driver.cc 20 void GCMDriver::Register(const std::string& app_id,
23 DCHECK(!app_id.empty());
34 if (IsAsyncOperationPending(app_id)) {
43 register_callbacks_[app_id] = callback;
45 RegisterImpl(app_id, normalized_sender_ids);
48 void GCMDriver::Unregister(const std::string& app_id,
50 DCHECK(!app_id.empty());
60 if (IsAsyncOperationPending(app_id)) {
65 unregister_callbacks_[app_id] = callback;
67 UnregisterImpl(app_id);
    [all...]
fake_gcm_client.h 50 virtual void Register(const std::string& app_id,
52 virtual void Unregister(const std::string& app_id) OVERRIDE;
53 virtual void Send(const std::string& app_id,
66 void ReceiveMessage(const std::string& app_id,
68 void DeleteMessages(const std::string& app_id);
79 void RegisterFinished(const std::string& app_id,
81 void UnregisterFinished(const std::string& app_id);
82 void SendFinished(const std::string& app_id, const OutgoingMessage& message);
83 void MessageReceived(const std::string& app_id,
85 void MessagesDeleted(const std::string& app_id);
    [all...]
gcm_driver.h 39 // |app_id|: application ID.
44 void Register(const std::string& app_id,
49 // |app_id|: application ID.
51 void Unregister(const std::string& app_id,
55 // |app_id|: application ID.
59 void Send(const std::string& app_id,
79 virtual void AddAppHandler(const std::string& app_id, GCMAppHandler* handler);
82 virtual void RemoveAppHandler(const std::string& app_id);
85 GCMAppHandler* GetAppHandler(const std::string& app_id);
115 virtual void RegisterImpl(const std::string& app_id,
    [all...]
fake_gcm_driver.cc 19 const std::string& app_id, GCMAppHandler* handler) {
22 void FakeGCMDriver::RemoveAppHandler(const std::string& app_id) {
61 void FakeGCMDriver::RegisterImpl(const std::string& app_id,
65 void FakeGCMDriver::UnregisterImpl(const std::string& app_id) {
68 void FakeGCMDriver::SendImpl(const std::string& app_id,
fake_gcm_driver.h 21 virtual void AddAppHandler(const std::string& app_id,
23 virtual void RemoveAppHandler(const std::string& app_id) OVERRIDE;
42 const std::string& app_id,
44 virtual void UnregisterImpl(const std::string& app_id) OVERRIDE;
45 virtual void SendImpl(const std::string& app_id,
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data_delegate.h 22 virtual void OnKioskAppDataChanged(const std::string& app_id) = 0;
25 virtual void OnKioskAppDataLoadFailure(const std::string& app_id) = 0;
kiosk_app_manager_observer.h 15 virtual void OnKioskAppDataChanged(const std::string& app_id) {}
18 virtual void OnKioskAppDataLoadFailure(const std::string& app_id) {}
app_launch_utils.h 14 // Attempts to launch the app given by |app_id| in app mode
18 void LaunchAppOrDie(Profile *profile, const std::string& app_id);
app_session_lifetime.h 15 void InitAppSession(Profile* profile, const std::string& app_id);
  /external/chromium_org/ash/shelf/
shelf_delegate.h 29 virtual ShelfID GetShelfIDForAppID(const std::string& app_id) = 0;
34 // Pins an app with |app_id| to shelf. A running instance will get pinned.
37 virtual void PinAppWithID(const std::string& app_id) = 0;
40 virtual bool IsAppPinned(const std::string& app_id) = 0;
46 // Unpins app item with |app_id|.
47 virtual void UnpinAppWithID(const std::string& app_id) = 0;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_sync_unittest.cc 166 fileapi::FileSystemURL CreateURL(const std::string& app_id,
168 return CreateURL(app_id, base::FilePath(path));
171 fileapi::FileSystemURL CreateURL(const std::string& app_id,
173 GURL origin = extensions::Extension::GetBaseURLFromExtensionId(app_id);
177 bool GetAppRootFolderID(const std::string& app_id,
187 app_id,
199 std::string GetFileIDByPath(const std::string& app_id,
201 return GetFileIDByPath(app_id, base::FilePath(path));
204 std::string GetFileIDByPath(const std::string& app_id,
216 app_id,
416 const std::string& app_id = itr->first; local
616 std::string app_id = "example"; local
633 std::string app_id = "example"; local
656 std::string app_id = "example"; local
679 std::string app_id = "example"; local
708 std::string app_id = "example"; local
730 std::string app_id = "example"; local
754 std::string app_id = "example"; local
780 std::string app_id = "example"; local
814 std::string app_id = "example"; local
884 std::string app_id = "example"; local
938 std::string app_id = "example"; local
969 std::string app_id = "example"; local
1014 std::string app_id = "example"; local
1048 std::string app_id = "example"; local
1086 std::string app_id = "example"; local
1128 std::string app_id = "example"; local
1169 std::string app_id = "example"; local
1205 std::string app_id = "example"; local
1241 std::string app_id = "example"; local
1275 std::string app_id = "example"; local
1310 std::string app_id = "example"; local
1352 std::string app_id = "example"; local
1392 std::string app_id = "example"; local
1434 std::string app_id = "example"; local
1473 std::string app_id = "example"; local
1510 std::string app_id = "example"; local
1548 std::string app_id = "example"; local
1589 std::string app_id = "example"; local
1624 std::string app_id = "example"; local
1664 std::string app_id = "example"; local
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_hl_co.h 46 ** Parameters app_id - application ID
53 BTA_API extern BOOLEAN bta_hl_co_get_num_of_mdep(UINT8 app_id, UINT8 *p_num_of_mdep);
61 ** Parameters app_id - application ID
67 BTA_API extern BOOLEAN bta_hl_co_advrtise_source_sdp(UINT8 app_id);
76 ** Parameters app_id - HDP application ID
85 BTA_API extern BOOLEAN bta_hl_co_get_mdep_config(UINT8 app_id,
99 ** Parameters app_id - HDP application ID
105 BTA_API extern BOOLEAN bta_hl_co_get_echo_config(UINT8 app_id,
116 ** Parameters app_id - HDP application ID
123 BTA_API extern void bta_hl_co_save_mdl(UINT8 app_id, UINT8 item_idx, tBTA_HL_MDL_CFG *p_mdl_cfg )
    [all...]
bta_hh_co.h 51 UINT8 ctry_code, BD_ADDR peer_addr, UINT8 app_id);
65 UINT16 attr_mask, UINT8 app_id);
77 BTA_API extern void bta_hh_co_close(UINT8 dev_handle, UINT8 app_id);
91 ** app_id - application id
98 UINT8 app_id);
110 ** app_id - application id
117 UINT8 app_id);
130 BTA_API extern void bta_hh_le_co_reset_rpt_cache (BD_ADDR remote_bda, UINT8 app_id);
  /external/chromium_org/chrome/browser/services/gcm/
fake_gcm_profile_service.cc 25 void OnRegisterFinished(const std::string& app_id,
28 void OnUnregisterFinished(const std::string& app_id,
30 void OnSendFinished(const std::string& app_id,
37 const std::string& app_id,
39 virtual void UnregisterImpl(const std::string& app_id) OVERRIDE;
40 virtual void SendImpl(const std::string& app_id,
58 const std::string& app_id,
64 app_id,
68 void CustomFakeGCMDriver::UnregisterImpl(const std::string& app_id) {
73 app_id));
    [all...]
  /external/chromium_org/ash/shell/
shelf_delegate_impl.cc 30 ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) {
38 void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) {
41 bool ShelfDelegateImpl::IsAppPinned(const std::string& app_id) {
49 void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {
  /external/chromium_org/apps/
app_lifetime_monitor.h 34 virtual void OnAppStart(Profile* profile, const std::string& app_id) = 0;
37 const std::string& app_id) = 0;
40 const std::string& app_id) = 0;
42 virtual void OnAppStop(Profile* profile, const std::string& app_id) = 0;
74 void NotifyAppStart(const std::string& app_id);
75 void NotifyAppActivated(const std::string& app_id);
76 void NotifyAppDeactivated(const std::string& app_id);
77 void NotifyAppStop(const std::string& app_id);
  /external/chromium_org/google_apis/gcm/monitoring/
fake_gcm_stats_recorder.cc 46 const std::string& app_id,
51 const std::string& app_id,
57 const std::string& app_id,
63 const std::string& app_id) {
67 const std::string& app_id,
72 const std::string& app_id,
77 const std::string& app_id,
85 const std::string& app_id,
92 const std::string& app_id,
101 const std::string& app_id,
    [all...]

Completed in 188 milliseconds

1 2 3 4 5 6 7 8 91011>>