/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
feedbackPrivate.html | 1 <h2 id="code">Implemention of the Chrome [OS] Feedback UI</h2> 4 The Chrome [OS] Feedback UI is invoked when the user clicks 12 the timestamp of when the user invoked feedback</i>). 18 fields to fill out feedback. 23 feedback to the feedback servers. 27 The sendFeedback API gathers the feedback data and starts a post to 28 the feedback servers. If the post is successful, a 'success' status 29 is returned to the Feedback UI, otherwise a 'delayed' status is 30 returned and Chrome continues to try to send the feedback every 4 hour [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
feedback_private.idl | 6 // feedback to the Google Feedback servers. 20 // File to attach to the feedback report. 23 // An optional tag to label what type this feedback is. 26 // The feedback text describing the user issue. 29 // The e-mail of the user that initiated this feedback. 36 // usually passed to the feedback server. 39 // Screenshot to send with this feedback. 47 // feedback report. 50 // True if we have permission to add histograms to this feedback report [all...] |
/external/chromium_org/net/quic/congestion_control/ |
tcp_receiver_test.cc | 23 QuicCongestionFeedbackFrame feedback; local 26 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback)); 27 EXPECT_EQ(kTCP, feedback.type); 28 EXPECT_EQ(256000u, feedback.tcp.receive_window); 29 EXPECT_EQ(0, feedback.tcp.accumulated_number_of_lost_packets); 31 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback)); 32 EXPECT_EQ(kTCP, feedback.type); 33 EXPECT_EQ(256000u, feedback.tcp.receive_window); 34 EXPECT_EQ(1, feedback.tcp.accumulated_number_of_lost_packets);
|
tcp_receiver.cc | 20 QuicCongestionFeedbackFrame* feedback) { 21 feedback->type = kTCP; 22 feedback->tcp.accumulated_number_of_lost_packets = 24 feedback->tcp.receive_window = receive_window_;
|
inter_arrival_receiver_test.cc | 26 QuicCongestionFeedbackFrame feedback; local 27 ASSERT_FALSE(receiver_.GenerateCongestionFeedback(&feedback)); 37 ASSERT_TRUE(receiver_.GenerateCongestionFeedback(&feedback)); 39 EXPECT_EQ(kInterArrival, feedback.type); 40 EXPECT_EQ(1, feedback.inter_arrival.accumulated_number_of_lost_packets); 41 EXPECT_EQ(3u, feedback.inter_arrival.received_packet_times.size()); 42 TimeMap::iterator it = feedback.inter_arrival.received_packet_times.begin(); 45 it = feedback.inter_arrival.received_packet_times.begin();
|
inter_arrival_receiver.cc | 19 QuicCongestionFeedbackFrame* feedback) { 21 // Don't waste resources by sending a feedback frame for only one packet. 24 feedback->type = kInterArrival; 25 feedback->inter_arrival.accumulated_number_of_lost_packets = 28 // Copy our current receive set to our feedback message, we will not resend 30 feedback->inter_arrival.received_packet_times = received_packet_times_;
|
fix_rate_receiver.cc | 21 QuicCongestionFeedbackFrame* feedback) { 22 feedback->type = kFixRate; 23 feedback->fix_rate.bitrate = configured_rate_;
|
fix_rate_test.cc | 48 QuicCongestionFeedbackFrame feedback; local 52 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback)); 53 EXPECT_EQ(kFixRate, feedback.type); 54 EXPECT_EQ(300000u, feedback.fix_rate.bitrate.ToBytesPerSecond()); 58 QuicCongestionFeedbackFrame feedback; local 59 feedback.type = kFixRate; 60 feedback.fix_rate.bitrate = QuicBandwidth::FromKBytesPerSecond(300); 61 sender_->OnIncomingQuicCongestionFeedbackFrame(feedback, clock_.Now(), 92 QuicCongestionFeedbackFrame feedback; local 94 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback)); [all...] |
inter_arrival_receiver.h | 25 QuicCongestionFeedbackFrame* feedback) OVERRIDE; 37 // The set of received packets since the last feedback was sent, along with
|
/external/chromium/chrome/browser/userfeedback/proto/ |
config.proto | 4 // Messages containing configuration of Feedback Service 13 // Product for which feedback can be sent: GMail, Writely etc. 23 // feedback type applies to the page user is browsing and forward 29 // index of feedback type as found in database 32 // Specifies whether this feedback type is currently enabled and 33 // feedback of this type can be submitted. 36 // Problem name of this feedback type on Google Feedback pages. 39 // Name of the product to which this feedback type belongs. 48 // is sent upon each new feedback of this type [all...] |
/external/chromium_org/chrome/browser/feedback/proto/ |
config.proto | 5 // Messages containing configuration of Feedback Service 14 // Product for which feedback can be sent: GMail, Writely etc. 24 // feedback type applies to the page user is browsing and forward 30 // index of feedback type as found in database 33 // Specifies whether this feedback type is currently enabled and 34 // feedback of this type can be submitted. 37 // Problem name of this feedback type on Google Feedback pages. 40 // Name of the product to which this feedback type belongs. 49 // is sent upon each new feedback of this type [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
reset_profile_settings_overlay.css | 19 #feedback-bar { 24 #feedback-template { 29 #feedback-template table { 34 #feedback-template table td { 38 #feedback-template .key { 44 #feedback-template .value { 50 #expand-feedback { 60 #expand-feedback:hover {
|
/external/chromium_org/chrome/browser/spellchecker/ |
feedback_sender.h | 5 // An object to record and send user feedback to spelling service. The spelling 6 // service uses the feedback to improve its suggestions. 10 // Periodically sends batches of user feedback to the spelling service. 22 #include "chrome/browser/spellchecker/feedback.h" 39 // Constants for the feedback field trial. 45 // Stores and sends user feedback to the spelling service. Sample usage: 55 // Constructs a feedback sender. Keeps |request_context| in a scoped_refptr, 85 // feedback for the markers that are gone from the renderer. Sends feedback 88 // start timestamp and sends out all of the feedback data [all...] |
feedback.h | 5 // An object to store user feedback to spellcheck suggestions from spelling 8 // Stores feedback for the spelling service in |Misspelling| objects. Each 23 // Stores user feedback to spellcheck suggestions. Sample usage: 24 // Feedback feedback; 25 // feedback.AddMisspelling(renderer_process_id, Misspelling( 28 // feedback.FinalizeRemovedMisspellings(renderer_process_id, 30 // ProcessFeedback(feedback.GetMisspellingsInRenderer(renderer_process_id)); 31 // feedback.EraseFinalizedMisspellings(renderer_process_id); 32 class Feedback { [all...] |
feedback.cc | 5 // The |Feedback| object keeps track of each instance of user feedback in a map 9 // |Feedback| objects keeps track of misspelling-renderer relationship in the 14 // |Feedback| object facilitates efficient access to these misspellings through 17 #include "chrome/browser/spellchecker/feedback.h" 26 Feedback::Feedback() { 29 Feedback::~Feedback() { 32 Misspelling* Feedback::GetMisspelling(uint32 hash) [all...] |
/external/chromium_org/tools/grit/grit/testdata/ |
error.html | 6 If you think this is an error, please <a href="http://desktop.google.com/feedback.html?version=[VERSION]">contact us</a>.
|
/packages/inputmethods/LatinIME/java/res/values/ |
research_strings.xml | 24 <!-- Account type allowed for inclusion in user-invoked feedback logs [CHAR LIMIT=38] --> 26 <!-- Account domain allowed for inclusion in user-invoked feedback logs [CHAR LIMIT=38] --> 29 <!-- Menu option that lets user send feedback for research purposes about the IME [CHAR LIMIT=38] --> 31 <string name="research_feedback_menu_option" translatable="false">Send feedback</string> 32 <!-- Title of dialog box that lets user send feedback for research purposes about the IME [CHAR LIMIT=38] --> 34 <string name="research_feedback_dialog_title" translatable="false">Send feedback</string> 35 <!-- Hint to user about the text entry field where they should enter research feedback [CHAR LIMIT=40] --> 37 <string name="research_feedback_hint" translatable="false">Enter your feedback here.</string> 38 <!-- Message informing the user that the feedback string must not be empty [CHAR LIMIT=100] --> 40 <string name="research_feedback_empty_feedback_error_message" translatable="false">The feedback field must not be empty.</string [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/ |
_index.html | 5 This is an example of an accessibility service that provides custom feedback for the Clock 7 ways to utilize the accessibility API for providing alternative and complementary feedback. 8 The sample demonstrates how to provide application specific feedback — the service 10 how to provide dynamic, context-dependent feedback — feedback type changes depending on
|
ClockBackService.java | 40 * This class is an {@link AccessibilityService} that provides custom feedback 49 * providing alternative and complementary feedback. 52 * Providing application specific feedback — the service handles only 56 * Providing dynamic, context-dependent feedback — feedback type changes 112 /** Feedback mapping index used as a key for the screen-on broadcast. */ 115 /** Feedback mapping index used as a key for the screen-off broadcast. */ 120 /** Feedback mapping index used as a key for normal ringer mode. */ 123 /** Feedback mapping index used as a key for vibration ringer mode. */ 126 /** Feedback mapping index used as a key for silent ringer mode. * [all...] |
/external/chromium_org/chrome/browser/safe_browsing/ |
download_feedback_service_unittest.cc | 88 FakeDownloadFeedback* feedback = new FakeDownloadFeedback( variable 97 feedbacks_.push_back(feedback); 98 return feedback; 105 FakeDownloadFeedback* feedback(size_t n) const { function in class:safe_browsing::__anon5525::FakeDownloadFeedbackFactory 159 FakeDownloadFeedback* feedback(size_t n) const { function in class:safe_browsing::DownloadFeedbackServiceTest 160 return download_feedback_factory_.feedback(n); 218 ASSERT_TRUE(feedback(0)); 219 EXPECT_TRUE(feedback(0)->start_called()); 220 EXPECT_EQ(ping_request, feedback(0)->GetPingRequestForTesting()); 221 EXPECT_EQ(ping_response, feedback(0)->GetPingResponseForTesting()) [all...] |
/external/chromium_org/chrome/browser/resources/feedback/ |
manifest.json | 4 "name": "Feedback", 8 "description": "User feedback extension",
|
/external/chromium_org/chrome/browser/feedback/ |
feedback_util.h | 13 #include "chrome/browser/feedback/proto/common.pb.h" 14 #include "chrome/browser/feedback/proto/dom.pb.h" 15 #include "chrome/browser/feedback/proto/extension.pb.h" 16 #include "chrome/browser/feedback/proto/math.pb.h"
|
/external/chromium_org/chrome/browser/resources/feedback/js/ |
event_handler.js | 24 'endkpmfloggdajndjpoekmkjnkolfdbf', // Feedback Extension 35 * invoke the feedback UI. 44 * Callback which gets notified once our feedback UI has loaded and is ready to 45 * receive its initial feedback info object. 61 * Callback which gets notified if another extension is requesting feedback. 72 * Callback which starts up the feedback UI. 73 * @param {Object} feedbackInfo Object containing any initial feedback info.
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
accessibility_menu.html | 4 <input id="spoken-feedback" type="checkbox"> 5 <label for="spoken-feedback" class="checkboxlabel"
|
/prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/ |
bcprov-jdk15on-1.48.pom | 23 <id>feedback-crypto</id> 25 <email>feedback-crypto@bouncycastle.org</email>
|