/external/chromium_org/ash/display/ |
resolution_notification_controller.cc | 306 const DisplayInfo& info = Shell::GetInstance()->display_manager()-> local 308 change_info_->current_resolution = info.bounds_in_native().size();
|
/external/chromium_org/ash/system/ime/ |
tray_ime.cc | 78 IMEInfo info; local 79 Shell::GetInstance()->system_tray_delegate()->GetCurrentIME(&info); 80 UpdateLabel(info); 85 void UpdateLabel(const IMEInfo& info) { 86 SetLabel(info.name); 87 SetAccessibleName(info.name);
|
/external/chromium_org/base/android/java/src/org/chromium/base/ |
ApplicationStatus.java | 195 ActivityInfo info = sActivityInfo.get(activity); local 196 info.setStatus(newState); 199 for (ActivityStateListener listener : info.getListeners()) { 299 ActivityInfo info = sActivityInfo.get(activity); local 300 return info != null ? info.getStatus() : ActivityState.DESTROYED; 356 ActivityInfo info = sActivityInfo.get(activity); local 357 assert info != null && info.getStatus() != ActivityState.DESTROYED; 358 info.getListeners().addObserver(listener) [all...] |
/external/chromium_org/base/message_loop/ |
message_pump_win.cc | 475 JOBOBJECT_ASSOCIATE_COMPLETION_PORT info; local 476 info.CompletionKey = reinterpret_cast<void*>(key); 477 info.CompletionPort = port_; 480 &info, 481 sizeof(info)) != FALSE;
|
/external/chromium_org/base/process/ |
process_metrics_mac.cc | 153 vm_region_top_info_data_t info; local 160 reinterpret_cast<vm_region_info_t>(&info), 177 info.share_mode != SM_PRIVATE) 180 if (info.share_mode == SM_COW && info.ref_count == 1) 181 info.share_mode = SM_PRIVATE; 183 switch (info.share_mode) { 185 private_pages_count += info.private_pages_resident; 186 private_pages_count += info.shared_pages_resident; 189 private_pages_count += info.private_pages_resident [all...] |
process_metrics_win.cc | 246 MEMORY_BASIC_INFORMATION info; local 248 &info, sizeof(info))) 250 if (info.State == MEM_FREE) { 251 accumulated += info.RegionSize; 252 if (info.RegionSize > largest.RegionSize) 253 largest = info; 255 scan += info.RegionSize; 304 PERFORMANCE_INFORMATION info; local 305 if (!InternalGetPerformanceInfo(&info, sizeof(info))) [all...] |
/external/chromium_org/cc/resources/ |
picture_pile.cc | 218 PictureInfo& info = picture_map_[key]; local 224 if (info.NeedsRecording(frame_number, distance_to_visible)) { 227 } else if (!info.GetPicture()) { 300 PictureInfo& info = picture_map_[key]; local 301 info.SetPicture(picture);
|
picture_pile_base.cc | 157 SkTileGridFactory::TileGridInfo* info) { 158 DCHECK(info); 159 info->fTileInterval.set(tile_grid_size.width() - 2 * kTileGridBorderPixels, 161 DCHECK_GT(info->fTileInterval.width(), 0); 162 DCHECK_GT(info->fTileInterval.height(), 0); 163 info->fMargin.set(kTileGridBorderPixels, kTileGridBorderPixels); 167 info->fOffset.set(-kTileGridBorderPixels, -kTileGridBorderPixels); 306 PictureInfo info = *this; local 308 info.picture_ = picture_->GetCloneForDrawingOnThread(thread_index); 309 return info; [all...] |
picture_pile_impl.cc | 203 PictureInfo& info = map_iter->second; local 204 Picture* picture = info.GetPicture();
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/banners/ |
InstallerDelegateTest.java | 37 PackageInfo info = new PackageInfo(); local 38 info.packageName = MOCK_PACKAGE_NAME; 39 packages.add(info);
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
job_scheduler_unittest.cc | 50 JobInfo info; member in struct:drive::__anon7643::JobListLogger::EventLog 52 EventLog(EventType type, const JobInfo& info) : type(type), info(info) { 59 if (events[i].type == type && events[i].info.job_type == job_type) 68 if (events[i].type == UPDATED && events[i].info.job_type == job_type) 69 progress->push_back(events[i].info.num_completed_bytes); 74 virtual void OnJobAdded(const JobInfo& info) OVERRIDE { 75 events.push_back(EventLog(ADDED, info)); 78 virtual void OnJobUpdated(const JobInfo& info) OVERRIDE [all...] |
/external/chromium_org/chrome/browser/chromeos/login/users/wallpaper/ |
wallpaper_manager_browsertest.cc | 178 // Saves wallpaper info to local state for user |kTestUser1|. 179 WallpaperInfo info = { local 185 wallpaper_manager->SetUserWallpaperInfo(kTestUser1, info, true); 263 // Saves wallpaper info to local state for user |kTestUser1|. 264 WallpaperInfo info = { local 270 wallpaper_manager->SetUserWallpaperInfo(kTestUser1, info, true); 294 // wallpaper info directly to simulate the wallpaper migration. See 295 // crosbug.com/38429 for details about why we modify wallpaper info this way. 296 WallpaperInfo info = { local 309 WallpaperManager::Get()->SetUserWallpaperInfo(kTestUser1, info, true) 376 WallpaperInfo info = { local 492 WallpaperInfo info = { local [all...] |
wallpaper_manager_policy_browsertest.cc | 285 WallpaperInfo info; local 301 GetUserWallpaperInfo(0, &info); 302 ASSERT_EQ(User::POLICY, info.type); 308 GetUserWallpaperInfo(0, &info); 309 ASSERT_EQ(User::POLICY, info.type); 316 GetUserWallpaperInfo(0, &info); 317 ASSERT_EQ(User::DEFAULT, info.type);
|
/external/chromium_org/chrome/browser/download/ |
download_history.cc | 93 history::DownloadRow* info() { return info_.get(); } function in class:__anon8097::DownloadHistoryData 183 const history::DownloadRow& info, 185 history_->CreateDownload(info, callback); 309 if (data->info() == NULL) { 310 // Keep the info here regardless of whether the item is in progress so that, 312 // Update the db and/or clear the info. 316 history_->CreateDownload(*data->info(), base::Bind( 320 item, *data->info())); 404 bool should_update = ShouldUpdateHistory(data->info(), current_info);
|
/external/chromium_org/chrome/browser/extensions/ |
extension_assets_manager_chromeos.cc | 45 // Info about pending install request. 364 ExtensionAssetsManagerHelper::PendingInstallInfo& info = local 366 ExtensionAssetsManagerChromeOS::GetFileTaskRunner(info.profile)->PostTask( 371 info.unpacked_extension_root, 372 info.local_install_dir, 373 info.callback)); 394 ExtensionAssetsManagerHelper::PendingInstallInfo& info = local 396 users->AppendString(info.profile->GetProfileName()); 398 ExtensionAssetsManagerChromeOS::GetFileTaskRunner(info.profile)->PostTask( 400 base::Bind(info.callback, shared_version_dir)) [all...] |
/external/chromium_org/chrome/browser/extensions/updater/ |
local_extension_cache.cc | 282 base::FileEnumerator::FileInfo info = enumerator.GetInfo(); local 285 if (info.IsDirectory() || base::IsLink(info.GetName())) { 348 version, info.GetLastModifiedTime(), info.GetSize(), path))); 384 base::File::Info info; local 392 was_error = !base::GetFileInfo(cached_crx_path, &info); 404 CacheItemInfo(version, info.last_modified, 405 info.size, cached_crx_path) [all...] |
/external/chromium_org/chrome/browser/first_run/ |
try_chrome_dialog_view.cc | 302 MONITORINFO info = {sizeof(info)}; local 303 if (!GetMonitorInfoW(monitor, &info)) { 309 int left = is_RTL ? info.rcWork.left : info.rcWork.right - width; 310 int top = info.rcWork.bottom - height;
|
/external/chromium_org/chrome/browser/guest_view/ |
guest_view_base.cc | 259 extensions::EventFilteringInfo info; local 260 info.SetInstanceID(view_instance_id_); 271 info);
|
/external/chromium_org/chrome/browser/history/ |
url_database.cc | 75 bool URLDatabase::GetURLRow(URLID url_id, URLRow* info) { 85 FillURLRow(statement, info); 96 URLRow info; local 97 FillURLRow(statement, &info); 98 urls->push_back(info); 103 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) { 112 if (info) 113 FillURLRow(statement, info); 118 const history::URLRow& info) { 123 statement.BindString16(0, info.title()) 301 history::URLRow info; local 385 history::URLResult info; local [all...] |
/external/chromium_org/chrome/browser/media/ |
webrtc_logging_handler_host.cc | 437 std::string info; local 438 FormatMetaDataAsLogMessage(meta_data_, &info); 439 LogToCircularBuffer(info);
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
native_media_file_util.cc | 104 const base::File::Info& file_info, 334 base::File::Info file_info; 416 base::File::Info file_info; 462 base::File::Info file_info; 501 base::File::Info* file_info, 547 base::File::Info file_info; 569 base::FileEnumerator::FileInfo info = file_enum.GetInfo(); local 574 if (!info.IsDirectory() && !media_path_filter_->Match(enum_path)) 578 entry.is_directory = info.IsDirectory(); 580 entry.size = info.GetSize() [all...] |
/external/chromium_org/chrome/browser/ |
memory_details.cc | 183 ProcessMemoryInformation info; local 186 info.pid = base::GetProcId(iter.GetData().handle); 187 if (!info.pid) 190 info.process_type = iter.GetData().process_type; 191 info.renderer_type = ProcessMemoryInformation::RENDERER_UNKNOWN; 192 info.titles.push_back(iter.GetData().name); 193 child_info.push_back(info); 490 // Only record swap info when any swaps have happened, to give us more
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_util.cc | 233 const content::ResourceRequestInfo* info = local 235 GatherPagespeedData(info->GetResourceType(),
|
/external/chromium_org/chrome/browser/renderer_host/ |
chrome_resource_dispatcher_host_delegate.cc | 293 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 295 info->GetVisibilityState() == blink::WebPageVisibilityStatePrerender; 387 io_data, info->GetChildID(), info->GetRouteID()); 455 ExtensionRendererState::WebViewInfo info; 458 &info)) { 507 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 508 if (info->GetVisibilityState() == blink::WebPageVisibilityStatePrerender) { 512 info->GetChildID(), info->GetRenderFrameID(), request->url())) 552 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 595 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 614 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 676 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 706 const ResourceRequestInfo* info = local [all...] |
/external/chromium_org/chrome/browser/search/ |
hotword_service.cc | 400 content::WebPluginInfo info; local 402 if (content::PluginService::GetInstance()->GetPluginInfoByPath(path, &info)) 403 nacl_enabled = plugin_prefs->IsPluginEnabled(info);
|