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

Unified Diff: chrome_frame/find_dialog.cc

Issue 10540003: Move guid generation from chrome/common/ to base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: installer Created 8 years, 6 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 | « chrome/installer/gcapi/gcapi_reactivation_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/find_dialog.cc
diff --git a/chrome_frame/find_dialog.cc b/chrome_frame/find_dialog.cc
index 2c10866ff1a1988115b6d5f372307a21219250db..249fadb4f10f6cc0c46af96b3ccb631b99c015c2 100644
--- a/chrome_frame/find_dialog.cc
+++ b/chrome_frame/find_dialog.cc
@@ -6,8 +6,8 @@
#include <richedit.h>
+#include "base/guid.h"
#include "base/utf_string_conversions.h"
-#include "chrome/common/guid.h"
#include "chrome_frame/chrome_frame_automation.h"
const int kMaxFindChars = 1024;
@@ -26,7 +26,7 @@ LRESULT CFFindDialog::OnDestroy(UINT msg, WPARAM wparam, LPARAM lparam,
// do a fake search for a string that is unlikely to appear on the page.
// TODO(robertshield): Change this to plumb through a StopFinding automation
// message that triggers a ViewMsg_StopFinding.
- std::string guid(guid::GenerateGUID());
+ std::string guid(base::GenerateGUID());
automation_client_->FindInPage(ASCIIToWide(guid), FWD, CASE_SENSITIVE, false);
UninstallMessageHook();
« no previous file with comments | « chrome/installer/gcapi/gcapi_reactivation_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698