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

Side by Side Diff: chrome/browser/media_galleries/media_galleries_test_util.h

Issue 23513059: Media Galleries API Picasa: End-to-end browsertest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: self review Created 7 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_TEST_UTIL_H_ 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_TEST_UTIL_H_
6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_TEST_UTIL_H_ 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_TEST_UTIL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 18 matching lines...) Expand all
29 29
30 int num_galleries() const { return num_galleries_; } 30 int num_galleries() const { return num_galleries_; }
31 31
32 private: 32 private:
33 void Init(); 33 void Init();
34 34
35 base::ScopedTempDir fake_dir_; 35 base::ScopedTempDir fake_dir_;
36 36
37 int num_galleries_; 37 int num_galleries_;
38 38
39 scoped_ptr<base::ScopedPathOverride> appdir_override_; 39 scoped_ptr<base::ScopedPathOverride> app_data_override_;
40 scoped_ptr<base::ScopedPathOverride> music_override_; 40 scoped_ptr<base::ScopedPathOverride> music_override_;
41 scoped_ptr<base::ScopedPathOverride> pictures_override_; 41 scoped_ptr<base::ScopedPathOverride> pictures_override_;
42 scoped_ptr<base::ScopedPathOverride> video_override_; 42 scoped_ptr<base::ScopedPathOverride> video_override_;
43 #if defined(OS_WIN)
44 scoped_ptr<base::ScopedPathOverride> local_app_data_override_;
45 #endif
43 46
44 DISALLOW_COPY_AND_ASSIGN(EnsureMediaDirectoriesExists); 47 DISALLOW_COPY_AND_ASSIGN(EnsureMediaDirectoriesExists);
45 }; 48 };
46 49
47 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_TEST_UTIL_H_ 50 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_TEST_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698