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

Unified Diff: components/font_service/font_service_app.h

Issue 1711483004: Replace use of SkTDArray with std::vector in font code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/font_service/font_service_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/font_service/font_service_app.h
diff --git a/components/font_service/font_service_app.h b/components/font_service/font_service_app.h
index 041d4f8da0a521175b0f05919587dc7ec3e07622..c99260765d49b3ec8fc432d14329490544391ffe 100644
--- a/components/font_service/font_service_app.h
+++ b/components/font_service/font_service_app.h
@@ -6,6 +6,7 @@
#define COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_
#include <stdint.h>
+#include <vector>
#include "base/macros.h"
#include "components/font_service/public/interfaces/font_service.mojom.h"
@@ -49,7 +50,7 @@ class FontServiceApp : public mojo::ShellClient,
// We don't want to leak paths to our callers; we thus enumerate the paths of
// fonts.
- SkTDArray<SkString*> paths_;
+ std::vector<SkString> paths_;
DISALLOW_COPY_AND_ASSIGN(FontServiceApp);
};
« no previous file with comments | « no previous file | components/font_service/font_service_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698