/external/chromium_org/chrome/browser/content_settings/ |
content_settings_internal_extension_provider.cc | 86 const UnloadedExtensionInfo& info = local 88 if (extensions::PluginInfo::HasPlugins(info.extension)) 89 SetContentSettingForExtension(info.extension, CONTENT_SETTING_DEFAULT);
|
/external/chromium_org/chrome/browser/diagnostics/ |
diagnostics_controller_unittest.cc | 102 const DiagnosticsModel::TestInfo& info(results.GetTest(i)); 103 EXPECT_EQ(DiagnosticsModel::TEST_OK, info.GetResult()) << "Test: " 104 << info.GetId(); 117 const DiagnosticsModel::TestInfo& info(results.GetTest(i)); 118 EXPECT_EQ(DiagnosticsModel::RECOVERY_OK, info.GetResult()) << "Test: " 119 << info.GetId(); 135 const DiagnosticsModel::TestInfo* info = NULL; local 136 EXPECT_TRUE(results.GetTestInfo(kSQLiteIntegrityNSSCertTest, &info)); 137 EXPECT_EQ(DiagnosticsModel::TEST_FAIL_CONTINUE, info->GetResult()); 138 EXPECT_EQ(DIAG_SQLITE_ERROR_HANDLER_CALLED, info->GetOutcomeCode()) 156 const DiagnosticsModel::TestInfo* info = NULL; local [all...] |
/external/chromium_org/chrome/browser/extensions/api/feedback_private/ |
feedback_private_api.cc | 54 FeedbackInfo info; local 55 info.description = description_template; 56 info.category_tag = make_scoped_ptr(new std::string(category_tag)); 57 info.page_url = make_scoped_ptr(new std::string(page_url.spec())); 60 args->Append(info.ToValue().release());
|
/external/chromium_org/chrome/browser/extensions/api/web_request/ |
web_request_permissions.cc | 85 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 86 if (info) { 87 int process_id = info->GetChildID(); 88 int route_id = info->GetRouteID();
|
/external/chromium_org/chrome/browser/extensions/ |
permissions_updater.cc | 134 UpdatedExtensionPermissionsInfo info = UpdatedExtensionPermissionsInfo( local 139 content::Details<UpdatedExtensionPermissionsInfo>(&info));
|
/external/chromium_org/chrome/browser/metrics/ |
time_ticks_experiment_win.cc | 48 base::win::OSInfo* info = base::win::OSInfo::GetInstance(); local 49 UMA_HISTOGRAM_ENUMERATION("WinTimeTicks.VersionTotal", info->version(), 90 info->version(), base::win::VERSION_WIN_LAST); 95 UMA_HISTOGRAM_ENUMERATION("WinTimeTicks.TickedBackwards", info->version(), 108 info->version(), base::win::VERSION_WIN_LAST);
|
/external/chromium_org/chrome/browser/net/ |
chrome_fraudulent_certificate_reporter_unittest.cc | 36 SSLInfo info; local 38 info.cert = net::ImportCertFromFile(net::GetTestCertsDirectory(), 40 info.cert_status = net::CERT_STATUS_DATE_INVALID; 41 info.is_issued_by_known_root = false; 43 return info; 53 SSLInfo info; local 55 info.cert = net::ImportCertFromFile(net::GetTestCertsDirectory(), 57 info.is_issued_by_known_root = true; 59 return info; 62 // Checks that |info| is good as required by the SSL checks performed i 158 SSLInfo info = GetGoodSSLInfo(); local 166 SSLInfo info = GetBadSSLInfo(); local 174 SSLInfo info = GetGoodSSLInfo(); local [all...] |
/external/chromium_org/chrome/common/extensions/api/i18n/ |
default_locale_handler.cc | 28 LocaleInfo* info = static_cast<LocaleInfo*>( local 30 return info ? info->default_locale : EmptyString(); 40 scoped_ptr<LocaleInfo> info(new LocaleInfo); 42 &info->default_locale) || 43 !l10n_util::IsValidLocaleSyntax(info->default_locale)) { 47 extension->SetManifestData(keys::kDefaultLocale, info.release());
|
/external/chromium_org/chrome/common/extensions/api/identity/ |
oauth2_manifest_handler.cc | 36 OAuth2Info* info = static_cast<OAuth2Info*>( local 38 return info ? *info : g_empty_oauth2_info.Get(); 49 scoped_ptr<OAuth2Info> info(new OAuth2Info); 61 !dict->GetBoolean(kAutoApprove, &info->auto_approve)) { 68 if ((!dict->GetString(kClientId, &info->client_id) || 69 info->client_id.empty()) && 70 (extension->location() != Manifest::COMPONENT || !info->auto_approve)) { 87 info->scopes.push_back(scope); 90 extension->SetManifestData(keys::kOAuth2, info.release()) [all...] |
/external/chromium_org/chrome/common/extensions/api/media_galleries_private/ |
media_galleries_handler.cc | 112 MediaGalleriesHandlerInfo* info = static_cast<MediaGalleriesHandlerInfo*>( local 114 if (info) 115 return &info->media_galleries_handlers; 133 scoped_ptr<MediaGalleriesHandlerInfo> info(new MediaGalleriesHandlerInfo); 136 &info->media_galleries_handlers, 141 extension->SetManifestData(keys::kMediaGalleriesHandlers, info.release());
|
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
icons_handler.cc | 35 IconsInfo* info = static_cast<IconsInfo*>( local 37 return info ? info->icons : g_empty_icon_set.Get();
|
requirements_handler.cc | 36 RequirementsInfo* info = static_cast<RequirementsInfo*>( local 41 CHECK(info); 42 return *info;
|
sandboxed_page_info.cc | 31 SandboxedPageInfo* info = static_cast<SandboxedPageInfo*>( local 33 return info ? *info : g_empty_sandboxed_info.Get();
|
/external/chromium_org/chrome/service/ |
service_ipc_server.cc | 118 cloud_print::CloudPrintProxyInfo info; local 119 g_service_process->GetCloudPrintProxy()->GetProxyInfo(&info); 120 channel_->Send(new ServiceHostMsg_CloudPrintProxy_Info(info));
|
/external/chromium_org/content/browser/ |
plugin_process_host.h | 57 virtual void SetPluginInfo(const WebPluginInfo& info) = 0; 76 bool Init(const WebPluginInfo& info); 111 const WebPluginInfo& info() const { return info_; } function in class:content::PluginProcessHost
|
/external/chromium_org/content/test/net/ |
url_request_abort_on_end_job.cc | 53 net::HttpResponseInfo* info) const { 66 info->headers = new net::HttpResponseHeaders(raw_headers); 79 void URLRequestAbortOnEndJob::GetResponseInfo(net::HttpResponseInfo* info) { 80 GetResponseInfoConst(info); 84 net::HttpResponseInfo info; local 85 GetResponseInfoConst(&info); 86 return info.headers.get() && info.headers->GetMimeType(mime_type);
|
/external/chromium_org/extensions/common/ |
event_filter_unittest.cc | 91 EventFilteringInfo info; local 92 info.SetURL(GURL("http://www.yahoo.com")); 95 "event1", info, MSG_ROUTING_NONE); 119 EventFilteringInfo info; local 120 info.SetURL(GURL("http://www.google.com")); 124 "event1", info, MSG_ROUTING_NONE);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
event_listener.cc | 59 void EventListener::Signal(const ScopedEventInfo& info) { 62 signaled_.insert(info); 98 ScopedEventInfo& info = it->second; local 99 uint32_t event_bits = info->emitter->GetEventStatus() & info->filter; 103 events[*out_count].user_data = info->user_data; 194 ScopedEventInfo info(new EventInfo); 195 info->emitter = emitter.get(); 196 info->listener = this; 197 info->id = id [all...] |
/external/chromium_org/net/proxy/ |
proxy_resolver_winhttp.cc | 24 static void FreeInfo(WINHTTP_PROXY_INFO* info) { 25 if (info->lpszProxy) 26 GlobalFree(info->lpszProxy); 27 if (info->lpszProxyBypass) 28 GlobalFree(info->lpszProxyBypass); 60 WINHTTP_PROXY_INFO info = {0}; local 69 session_handle_, ASCIIToWide(query_url.spec()).c_str(), &options, &info); 75 &options, &info); 91 switch (info.dwAccessType) { 110 results->UseNamedProxy(WideToASCII(info.lpszProxy)) [all...] |
/external/chromium_org/net/socket/ |
nss_ssl_util.cc | 53 SSLCipherSuiteInfo info; local 54 if (SSL_GetCipherSuiteInfo(ssl_ciphers[i], &info, 55 sizeof(info)) == SECSuccess) { 56 bool enabled = info.effectiveKeyBits >= 80; 57 if (info.authAlgorithm == ssl_auth_ecdsa && disableECDSA) 63 if (info.symCipher == ssl_calg_camellia || 64 info.symCipher == ssl_calg_seed || 65 (info.symCipher == ssl_calg_3des && info.keaType != ssl_kea_rsa) || 66 info.authAlgorithm == ssl_auth_dsa | [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
interface.cpp | 36 ScriptWrappable::setTypeInfoInObject(object, &{{v8_class_name}}::info); 46 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 53 WrapperTypeInfo {{v8_class_name}}::info = { {{v8_class_name}}::GetTemplate, {{v8_class_name}}::derefObject, 0, 0, 0, {{v8_class_name}}::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype }; member in namespace:WebCore 60 static void {{attribute.name}}AttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 62 {{cpp_class_name}}* imp = {{v8_class_name}}::toNative(info.Holder()); 64 v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper<{{attribute.v8_type}}>(result.get(), info.GetIsolate())) : v8Undefined(); 66 wrapper = toV8(result.get(), info.Holder(), info.GetIsolate()); 68 V8HiddenPropertyName::setNamedHiddenReference(info.Holder(), "{{attribute.name}}", wrapper); 70 v8SetReturnValue(info, wrapper) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestEvent.cpp | 41 ScriptWrappable::setTypeInfoInObject(object, &V8TestEvent::info); 51 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 58 WrapperTypeInfo V8TestEvent::info = { V8TestEvent::GetTemplate, V8TestEvent::derefObject, 0, 0, 0, V8TestEvent::installPerContextPrototypeProperties, &V8Event::info, WrapperTypeObjectPrototype }; member in class:WebCore::V8TestEvent 84 V8PerIsolateData::TemplateMap::iterator result = data->templateMap(currentWorldType).find(&info); 91 ConfigureV8TestEventTemplate(data->rawTemplate(&info, currentWorldType), isolate, currentWorldType); 92 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ)); 98 return V8PerIsolateData::from(isolate)->hasInstance(&info, value, currentWorldType); 103 return V8PerIsolateData::from(isolate)->hasInstance(&info, value, MainWorld) 104 || V8PerIsolateData::from(isolate)->hasInstance(&info, value, IsolatedWorld [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotWorker.js | 67 info: function(var_args) 69 this._postMessage("info", Array.prototype.slice.call(arguments));
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ExternalPopupMenu.cpp | 68 WebPopupMenuInfo info; local 69 getPopupMenuInfo(&info); 70 if (info.items.isEmpty()) 73 m_webViewClient->createExternalPopupMenu(info, this); 162 void ExternalPopupMenu::getPopupMenuInfo(WebPopupMenuInfo* info) 186 info->itemHeight = m_popupMenuClient->menuStyle().font().fontMetrics().height(); 187 info->itemFontSize = static_cast<int>(m_popupMenuClient->menuStyle().font().size()); 188 info->selectedIndex = m_popupMenuClient->selectedIndex(); 189 info->rightAligned = m_popupMenuClient->menuStyle().textDirection() == WebCore::RTL; 190 info->allowMultipleSelection = m_popupMenuClient->multiple() [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
test.cc | 113 hb_glyph_info_t *info = &infos[i]; local 117 info->cluster, 118 info->codepoint,
|