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

Side by Side Diff: ios/public/test/fake_string_provider.cc

Issue 1500533002: Upstream chrome://flags & chrome://ui-alternatives iOS WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add components/flags_ui/resources/apple_flags.css to PRESUBMIT blacklist Created 5 years 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
« no previous file with comments | « ios/public/test/fake_string_provider.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ios/public/test/fake_string_provider.h" 5 #include "ios/public/test/fake_string_provider.h"
6 6
7 namespace ios { 7 namespace ios {
8 8
9 FakeStringProvider::FakeStringProvider() { 9 FakeStringProvider::FakeStringProvider() {
10 } 10 }
11 11
12 FakeStringProvider::~FakeStringProvider() { 12 FakeStringProvider::~FakeStringProvider() {
13 } 13 }
14 14
15 std::string FakeStringProvider::GetOmniboxCopyUrlString() { 15 std::string FakeStringProvider::GetOmniboxCopyUrlString() {
16 return "Copy URL"; 16 return "Copy URL";
17 } 17 }
18 18
19 int FakeStringProvider::GetAppleFlagsTableTitleID() {
20 return 0;
21 }
22
23 int FakeStringProvider::GetAppleFlagsNoExperimentsAvailableID() {
24 return 0;
25 }
26
27 base::string16 FakeStringProvider::GetSpoofingInterstitialTitle() { 19 base::string16 FakeStringProvider::GetSpoofingInterstitialTitle() {
28 return base::string16(); 20 return base::string16();
29 } 21 }
30 22
31 base::string16 FakeStringProvider::GetSpoofingInterstitialHeadline() { 23 base::string16 FakeStringProvider::GetSpoofingInterstitialHeadline() {
32 return base::string16(); 24 return base::string16();
33 } 25 }
34 26
35 base::string16 FakeStringProvider::GetSpoofingInterstitialMessage() { 27 base::string16 FakeStringProvider::GetSpoofingInterstitialMessage() {
36 return base::string16(); 28 return base::string16();
(...skipping 29 matching lines...) Expand all
66 58
67 base::string16 FakeStringProvider::GetOKString() { 59 base::string16 FakeStringProvider::GetOKString() {
68 return base::string16(); 60 return base::string16();
69 } 61 }
70 62
71 base::string16 FakeStringProvider::GetProductName() { 63 base::string16 FakeStringProvider::GetProductName() {
72 return base::string16(); 64 return base::string16();
73 } 65 }
74 66
75 } // namespace ios 67 } // namespace ios
OLDNEW
« no previous file with comments | « ios/public/test/fake_string_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698