Rename desktop_cursor_loader_updater_aurax11.
[chromium-blink-merge.git] / chrome / browser / importer / importer_unittest_utils.h
blob9f6f143fc2530b2c5a8fc3d863c3832d7b0b1b9b
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_
6 #define CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_
8 #include "base/basictypes.h"
10 struct ImportedBookmarkEntry;
12 const int kMaxPathSize = 5;
14 struct BookmarkInfo {
15 const bool in_toolbar;
16 const size_t path_size;
17 const wchar_t* path[kMaxPathSize];
18 const wchar_t* title;
19 const char* url;
22 // Generates an assertion error if |entry| is not equal to |expected|. Wrap this
23 // method in (ASSERT|EXPECT)_NO_FATAL_FAILURE to catch the error if one is
24 // generated.
25 void TestEqualBookmarkEntry(const ImportedBookmarkEntry& entry,
26 const BookmarkInfo& expected);
28 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_