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

Side by Side Diff: chrome/browser/chromeos/fileapi/external_file_url_util_unittest.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/chromeos/fileapi/external_file_url_util.h" 5 #include "chrome/browser/chromeos/fileapi/external_file_url_util.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/chromeos/drive/file_system_util.h" 8 #include "chrome/browser/chromeos/drive/file_system_util.h"
9 #include "chrome/test/base/testing_browser_process.h" 9 #include "chrome/test/base/testing_browser_process.h"
10 #include "chrome/test/base/testing_profile_manager.h" 10 #include "chrome/test/base/testing_profile_manager.h"
11 #include "content/public/test/test_browser_thread_bundle.h" 11 #include "content/public/test/test_browser_thread_bundle.h"
12 #include "storage/browser/fileapi/file_system_url.h" 12 #include "storage/browser/fileapi/file_system_url.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 namespace chromeos { 15 namespace chromeos {
16 16
17 namespace { 17 namespace {
18 18
19 // Sets up ProfileManager for testing and marks the current thread as UI by 19 // Sets up ProfileManager for testing and marks the current thread as UI by
20 // TestBrowserThreadBundle. We need the thread since Profile objects must be 20 // TestBrowserThreadBundle. We need the thread since Profile objects must be
21 // touched from UI and hence has CHECK/DCHECKs for it. 21 // touched from UI and hence has CHECK/DCHECKs for it.
22 class ExternalFileURLUtilTest : public testing::Test { 22 class ExternalFileURLUtilTest : public testing::Test {
23 protected: 23 protected:
24 ExternalFileURLUtilTest() 24 ExternalFileURLUtilTest()
25 : testing_profile_manager_(TestingBrowserProcess::GetGlobal()) {} 25 : testing_profile_manager_(TestingBrowserProcess::GetGlobal()) {}
26 26
27 virtual void SetUp() OVERRIDE { 27 virtual void SetUp() override {
28 ASSERT_TRUE(testing_profile_manager_.SetUp()); 28 ASSERT_TRUE(testing_profile_manager_.SetUp());
29 } 29 }
30 30
31 TestingProfileManager& testing_profile_manager() { 31 TestingProfileManager& testing_profile_manager() {
32 return testing_profile_manager_; 32 return testing_profile_manager_;
33 } 33 }
34 34
35 storage::FileSystemURL CreateExpectedURL(const base::FilePath& path) { 35 storage::FileSystemURL CreateExpectedURL(const base::FilePath& path) {
36 return storage::FileSystemURL::CreateForTest( 36 return storage::FileSystemURL::CreateForTest(
37 GURL("chrome-extension://xxx"), 37 GURL("chrome-extension://xxx"),
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 utf16_string.push_back(0x307b); // HIRAGANA_LETTER_HO 74 utf16_string.push_back(0x307b); // HIRAGANA_LETTER_HO
75 utf16_string.push_back(0x3052); // HIRAGANA_LETTER_GE 75 utf16_string.push_back(0x3052); // HIRAGANA_LETTER_GE
76 url = CreateExpectedURL( 76 url = CreateExpectedURL(
77 base::FilePath::FromUTF8Unsafe(base::UTF16ToUTF8(utf16_string) + ".txt")); 77 base::FilePath::FromUTF8Unsafe(base::UTF16ToUTF8(utf16_string) + ".txt"));
78 EXPECT_EQ(url.virtual_path().AsUTF8Unsafe(), 78 EXPECT_EQ(url.virtual_path().AsUTF8Unsafe(),
79 ExternalFileURLToVirtualPath(FileSystemURLToExternalFileURL(url)) 79 ExternalFileURLToVirtualPath(FileSystemURLToExternalFileURL(url))
80 .AsUTF8Unsafe()); 80 .AsUTF8Unsafe());
81 } 81 }
82 82
83 } // namespace chromeos 83 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698