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

Side by Side Diff: chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.cc

Issue 498773003: Use a qualified path for chromium_strings, google_chrome_strings, and generated_resources. (part 2 … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 3 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 "chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h" 5 #include "chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h"
6 #include "chrome/grit/generated_resources.h"
6 #include "content/public/browser/native_web_keyboard_event.h" // For gmock. 7 #include "content/public/browser/native_web_keyboard_event.h" // For gmock.
7 #include "grit/generated_resources.h"
8 #include "ui/base/l10n/l10n_util.h" 8 #include "ui/base/l10n/l10n_util.h"
9 #include "ui/gfx/rect.h" // Only needed because gmock needs complete types. 9 #include "ui/gfx/rect.h" // Only needed because gmock needs complete types.
10 10
11 namespace autofill { 11 namespace autofill {
12 12
13 MockAutofillDialogViewDelegate::MockAutofillDialogViewDelegate() { 13 MockAutofillDialogViewDelegate::MockAutofillDialogViewDelegate() {
14 using testing::DefaultValue; 14 using testing::DefaultValue;
15 using testing::_; 15 using testing::_;
16 using testing::Return; 16 using testing::Return;
17 using testing::ReturnRef; 17 using testing::ReturnRef;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 DefaultValue<base::string16>::Clear(); 76 DefaultValue<base::string16>::Clear();
77 DefaultValue<GURL>::Clear(); 77 DefaultValue<GURL>::Clear();
78 DefaultValue<const DetailInputs&>::Clear(); 78 DefaultValue<const DetailInputs&>::Clear();
79 DefaultValue<FieldIconMap>::Clear(); 79 DefaultValue<FieldIconMap>::Clear();
80 DefaultValue<std::vector<DialogNotification> >::Clear(); 80 DefaultValue<std::vector<DialogNotification> >::Clear();
81 DefaultValue<content::WebContents*>::Clear(); 81 DefaultValue<content::WebContents*>::Clear();
82 DefaultValue<Profile*>::Clear(); 82 DefaultValue<Profile*>::Clear();
83 } 83 }
84 84
85 } // namespace autofill 85 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698