Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: src/plugin/PluginUtil.h

Issue 11043057: First run page triggering (Closed)
Left Patch Set: Comments addressed Created July 20, 2013, 8:11 p.m.
Right Patch Set: Minor refactoring. Renaming and a small cleanup. Created July 26, 2013, 12:05 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/plugin/PluginUserSettings.cpp ('k') | src/plugin/PluginUtil.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 #pragma once 1 #pragma once
2 #include <string> 2 #include <string>
3 3
4 class BString 4 class BString
5 { 5 {
6 public: 6 public:
7 BString(const std::wstring& value); 7 BString(const std::wstring& value);
8 ~BString(); 8 ~BString();
9 operator BSTR(); 9 operator BSTR();
10 private: 10 private:
11 BSTR value; 11 BSTR value;
12 BString(const BString&); 12 BString(const BString&);
13 BString& operator=(const BString&); 13 BString& operator=(const BString&);
14 }; 14 };
15 15
16 std::wstring HtmlFolderPath();
16 std::wstring UserSettingsFileUrl(); 17 std::wstring UserSettingsFileUrl();
18 std::wstring FirstRunPageFileUrl();
17 std::wstring FileUrl(const std::wstring& url); 19 std::wstring FileUrl(const std::wstring& url);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld