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

Unified Diff: app/tree_model.cc

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 years 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 | « app/tree_model.h ('k') | chrome/browser/autocomplete/autocomplete_edit.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/tree_model.cc
diff --git a/app/tree_model.cc b/app/tree_model.cc
new file mode 100644
index 0000000000000000000000000000000000000000..39d2d44d2176026ed4452c24740dd3e9a87a0bd6
--- /dev/null
+++ b/app/tree_model.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "app/tree_model.h"
+
+#include "base/logging.h"
+
+void TreeModel::SetTitle(TreeModelNode* node,
+ const string16& title) {
+ NOTREACHED();
+}
+
+int TreeModel::GetIconIndex(TreeModelNode* node) {
+ return -1;
+}
« no previous file with comments | « app/tree_model.h ('k') | chrome/browser/autocomplete/autocomplete_edit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698