Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: components/autofill/core/browser/autofill_metrics_unittest.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/autofill/core/browser/autofill_metrics.h" 5 #include "components/autofill/core/browser/autofill_metrics.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 15 matching lines...) Expand all
26 #include "components/autofill/core/common/form_data.h" 26 #include "components/autofill/core/common/form_data.h"
27 #include "components/autofill/core/common/form_field_data.h" 27 #include "components/autofill/core/common/form_field_data.h"
28 #include "components/autofill/core/common/forms_seen_state.h" 28 #include "components/autofill/core/common/forms_seen_state.h"
29 #include "components/webdata/common/web_data_results.h" 29 #include "components/webdata/common/web_data_results.h"
30 #include "content/public/test/test_utils.h" 30 #include "content/public/test/test_utils.h"
31 #include "testing/gmock/include/gmock/gmock.h" 31 #include "testing/gmock/include/gmock/gmock.h"
32 #include "testing/gtest/include/gtest/gtest.h" 32 #include "testing/gtest/include/gtest/gtest.h"
33 #include "ui/gfx/rect.h" 33 #include "ui/gfx/rect.h"
34 #include "url/gurl.h" 34 #include "url/gurl.h"
35 35
36 using base::ASCIIToUTF16;
36 using base::TimeDelta; 37 using base::TimeDelta;
37 using base::TimeTicks; 38 using base::TimeTicks;
38 using testing::_; 39 using testing::_;
39 using testing::AnyNumber; 40 using testing::AnyNumber;
40 using testing::Mock; 41 using testing::Mock;
41 42
42 namespace autofill { 43 namespace autofill {
43 44
44 namespace { 45 namespace {
45 46
(...skipping 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after
1553 TimeTicks::FromInternalValue(5)); 1554 TimeTicks::FromInternalValue(5));
1554 autofill_manager_->OnTextFieldDidChange(form, form.fields.front(), 1555 autofill_manager_->OnTextFieldDidChange(form, form.fields.front(),
1555 TimeTicks::FromInternalValue(3)); 1556 TimeTicks::FromInternalValue(3));
1556 autofill_manager_->FormSubmitted(form, TimeTicks::FromInternalValue(17)); 1557 autofill_manager_->FormSubmitted(form, TimeTicks::FromInternalValue(17));
1557 autofill_manager_->Reset(); 1558 autofill_manager_->Reset();
1558 Mock::VerifyAndClearExpectations(autofill_manager_->metric_logger()); 1559 Mock::VerifyAndClearExpectations(autofill_manager_->metric_logger());
1559 } 1560 }
1560 } 1561 }
1561 1562
1562 } // namespace autofill 1563 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_merge_unittest.cc ('k') | components/autofill/core/browser/autofill_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698