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

Side by Side Diff: base/mac_util.h

Issue 387016: For the immediate milestone, exclude History and Thumbnails from being backed... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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
« no previous file with comments | « no previous file | base/mac_util.mm » ('j') | base/mac_util.mm » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008-2009 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 BASE_MAC_UTIL_H_ 5 #ifndef BASE_MAC_UTIL_H_
6 #define BASE_MAC_UTIL_H_ 6 #define BASE_MAC_UTIL_H_
7 7
8 #include <Carbon/Carbon.h> 8 #include <Carbon/Carbon.h>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 void GrabWindowSnapshot(NSWindow* window, 82 void GrabWindowSnapshot(NSWindow* window,
83 std::vector<unsigned char>* png_representation); 83 std::vector<unsigned char>* png_representation);
84 84
85 // Takes a path to an (executable) binary and tries to provide the path to an 85 // Takes a path to an (executable) binary and tries to provide the path to an
86 // application bundle containing it. It takes the outermost bundle that it can 86 // application bundle containing it. It takes the outermost bundle that it can
87 // find (so for "/Foo/Bar.app/.../Baz.app/..." it produces "/Foo/Bar.app"). 87 // find (so for "/Foo/Bar.app/.../Baz.app/..." it produces "/Foo/Bar.app").
88 // |exec_name| - path to the binary 88 // |exec_name| - path to the binary
89 // returns - path to the application bundle, or empty on error 89 // returns - path to the application bundle, or empty on error
90 FilePath GetAppBundlePath(const FilePath& exec_name); 90 FilePath GetAppBundlePath(const FilePath& exec_name);
91 91
92 // Set the Time Machine exclusion property for the given file.
93 bool SetFileBackupExclusion(const FilePath& file_path, bool exclude);
94
92 } // namespace mac_util 95 } // namespace mac_util
93 96
94 #endif // BASE_MAC_UTIL_H_ 97 #endif // BASE_MAC_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | base/mac_util.mm » ('j') | base/mac_util.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698